Added UNBOUND-VALUE to the list of exported symbols
[clg] / glib / defpackage.lisp
1 ;; Common Lisp bindings for GTK+ v2.0
2 ;; Copyright (C) 1999-2000 Espen S. Johnsen <espejohn@online.no>
3 ;;
4 ;; This library is free software; you can redistribute it and/or
5 ;; modify it under the terms of the GNU Lesser General Public
6 ;; License as published by the Free Software Foundation; either
7 ;; version 2 of the License, or (at your option) any later version.
8 ;;
9 ;; This library is distributed in the hope that it will be useful,
10 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 ;; Lesser General Public License for more details.
13 ;;
14 ;; You should have received a copy of the GNU Lesser General Public
15 ;; License along with this library; if not, write to the Free Software
16 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
18 ;; $Id: defpackage.lisp,v 1.3 2004-12-26 11:45:07 espen Exp $
19
20 ;(export 'kernel::type-expand-1 "KERNEL")
21
22 (defpackage "GLIB"
23 (:use "ALIEN" "SYSTEM" "COMMON-LISP" "PCL" "AUTOEXPORT")
24 (:import-from "PCL"
25 "LOCATION" "ALLOCATION" "DIRECT-SLOTS"
26 "READER-FUNCTION" "WRITER-FUNCTION" "BOUNDP-FUNCTION"
27 "INITIALIZE-INTERNAL-SLOT-FUNCTIONS" "COMPUTE-SLOT-ACCESSOR-INFO"
28 "COMPUTE-EFFECTIVE-SLOT-DEFINITION-INITARGS"
29 "INITIALIZE-INTERNAL-SLOT-GFS")
30 (:export "DEFTYPE-METHOD" "TRANSLATE-TYPE-SPEC" "TRANSLATE-TO-ALIEN"
31 "TRANSLATE-FROM-ALIEN" "CLEANUP-ALIEN" "UNREFERENCE-ALIEN"
32 "SIZE-OF" "UNBOUND-VALUE")
33 (:export "DEFBINDING" "DEFINE-FOREIGN" "MKBINDING" "USE-PREFIX"
34 "PACKAGE-PREFIX")
35 (:export "LONG" "UNSIGNED-LONG" "INT" "UNSIGNED-INT" "SHORT" "UNSIGNED-SHORT"
36 "SIGNED" "UNSIGNED" "CHAR" "POINTER")
37 (:export "INTERN-ARGUMENT-TRANSLATOR" "INTERN-RETURN-VALUE-TRANSLATOR"
38 "INTERN-CLEANUP-FUNCTION" "INTERN-WRITER-FUNCTION"
39 "INTERN-READER-FUNCTION" "INTERN-DESTROY-FUNCTION"))
40