chiark / gitweb /
Updated for glib-1.3.4
[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
507d5ec8 18;; $Id: glib-package.lisp,v 1.4 2001-04-29 20:33:53 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")
32 (:export "DEFBINDING" "DEFINE-FOREIGN" "USE-PREFIX" "PACKAGE-PREFIX")
560af5c5 33 (:export "LONG" "UNSIGNED-LONG" "INT" "UNSIGNED-INT" "SHORT" "UNSIGNED-SHORT"
507d5ec8 34 "SIGNED" "UNSIGNED" "CHAR" "POINTER" "ENUM" "FLAGS")
35 (:export "INTERN-ARGUMENT-TRANSLATOR" "INTERN-RETURN-VALUE-TRANSLATOR"
36 "INTERN-CLEANUP-FUNCTION" "INTERN-WRITER-FUNCTION"
37 "INTERN-READER-FUNCTION" "INTERN-DESTROY-FUNCTION"))
3571a3cf 38