chiark / gitweb /
7d3ecde7d44f6875f081b069941f8ebc2ba3efaa
[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.1 2004-10-27 14:48:00 espen Exp $
19
20 ;(export 'kernel::type-expand-1 "KERNEL")
21
22 (defpackage "GLIB"
23   (:use "ALIEN" "C-CALL" "SYSTEM" "COMMON-LISP" "PCL" "AUTOEXPORT"
24         "GLIB-SYSTEM")
25   (;:shadowing-
26    :import-from "PCL"
27            "LOCATION" "ALLOCATION" "DIRECT-SLOTS" 
28            "READER-FUNCTION" "WRITER-FUNCTION" "BOUNDP-FUNCTION" 
29            "INITIALIZE-INTERNAL-SLOT-FUNCTIONS" "COMPUTE-SLOT-ACCESSOR-INFO"
30            "COMPUTE-EFFECTIVE-SLOT-DEFINITION-INITARGS"
31            #:initialize-internal-slot-gfs)
32  ; (:import-from "KERNEL" "TYPE-EXPAND-1")
33   (:export #:load-shared-library)
34   (:export "DEFTYPE-METHOD" "TRANSLATE-TYPE-SPEC" "TRANSLATE-TO-ALIEN"
35            "TRANSLATE-FROM-ALIEN" "CLEANUP-ALIEN" "UNREFERENCE-ALIEN"
36            "SIZE-OF")
37   (:export "DEFBINDING" "DEFINE-FOREIGN" "MKBINDING" "USE-PREFIX"
38            "PACKAGE-PREFIX")
39   (:export "LONG" "UNSIGNED-LONG" "INT" "UNSIGNED-INT" "SHORT" "UNSIGNED-SHORT"
40            "SIGNED" "UNSIGNED" "CHAR" "POINTER")
41   (:export "INTERN-ARGUMENT-TRANSLATOR" "INTERN-RETURN-VALUE-TRANSLATOR"
42            "INTERN-CLEANUP-FUNCTION" "INTERN-WRITER-FUNCTION"
43            "INTERN-READER-FUNCTION" "INTERN-DESTROY-FUNCTION"))
44