chiark / gitweb /
INIT-TYPES-IN-LIBRARY should now search for files in the default gtk libdir
[clg] / glib / glib-package.lisp
CommitLineData
560af5c5 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
7479d92c 18;; $Id: glib-package.lisp,v 1.5 2001-04-30 11:25:25 espen Exp $
560af5c5 19
20(export 'kernel::type-expand-1 "KERNEL")
21
22(defpackage "GLIB"
23 (:use "ALIEN" "C-CALL" "SYSTEM" "COMMON-LISP" "PCL" "AUTOEXPORT")
356b8585 24; (:shadow "DEFTYPE")
560af5c5 25 (:shadowing-import-from "PCL"
26 "CLASS-NAME" "BUILT-IN-CLASS" "CLASS-OF" "FIND-CLASS" "LOCATION"
27 "ALLOCATION" "DIRECT-SLOTS")
28 (:import-from "KERNEL" "TYPE-EXPAND-1")
29 (:export "DEFTYPE-METHOD" "TRANSLATE-TYPE-SPEC" "TRANSLATE-TO-ALIEN"
507d5ec8 30 "TRANSLATE-FROM-ALIEN" "CLEANUP-ALIEN" "UNREFERENCE-ALIEN"
31 "SIZE-OF")
7479d92c 32 (:export "DEFBINDING" "DEFINE-FOREIGN" "MKBINDING" "USE-PREFIX"
33 "PACKAGE-PREFIX")
560af5c5 34 (:export "LONG" "UNSIGNED-LONG" "INT" "UNSIGNED-INT" "SHORT" "UNSIGNED-SHORT"
7479d92c 35 "SIGNED" "UNSIGNED" "CHAR" "POINTER")
507d5ec8 36 (:export "INTERN-ARGUMENT-TRANSLATOR" "INTERN-RETURN-VALUE-TRANSLATOR"
37 "INTERN-CLEANUP-FUNCTION" "INTERN-WRITER-FUNCTION"
38 "INTERN-READER-FUNCTION" "INTERN-DESTROY-FUNCTION"))
3571a3cf 39