~ubuntu-branches/ubuntu/breezy/speech-dispatcher/breezy

« back to all changes in this revision

Viewing changes to src/cl/package.lisp

  • Committer: Bazaar Package Importer
  • Author(s): Milan Zamazal
  • Date: 2004-05-30 12:55:54 UTC
  • Revision ID: james.westby@ubuntu.com-20040530125554-iy8f3to3bw4cldv5
Tags: upstream-0.4.1
ImportĀ upstreamĀ versionĀ 0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;;; Package definition
 
2
 
 
3
;; Author: Milan Zamazal <pdm@brailcom.org>
 
4
 
 
5
;; Copyright (C) 2004 Brailcom, o.p.s.
 
6
 
 
7
;; COPYRIGHT NOTICE
 
8
 
 
9
;; This program is free software; you can redistribute it and/or modify
 
10
;; it under the terms of the GNU General Public License as published by
 
11
;; the Free Software Foundation; either version 2 of the License, or
 
12
;; (at your option) any later version.
 
13
 
 
14
;; This program is distributed in the hope that it will be useful, but
 
15
;; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
16
;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
17
;; for more details.
 
18
 
 
19
;; You should have received a copy of the GNU General Public License
 
20
;; along with this program; if not, write to the Free Software
 
21
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 
22
 
 
23
 
 
24
(in-package :cl-user)
 
25
 
 
26
 
 
27
(defpackage :ssip
 
28
  (:use :cl)
 
29
  (:export
 
30
   ;; configuration.lisp
 
31
   #:*application-name*
 
32
   #:*client-name*
 
33
   #:*language*
 
34
   #:*spell*
 
35
   ;; ssip.lisp
 
36
   #:connection-names
 
37
   #:set-language
 
38
   #:open-connection
 
39
   #:close-connection
 
40
   #:reopen-connection
 
41
   #:say-text
 
42
   #:say-sound
 
43
   #:say-char
 
44
   #:cancel
 
45
   #:stop
 
46
   #:pause
 
47
   #:resume
 
48
   ))
 
49