chiark / gitweb /
Changed define-foreign to defbinding
[clg] / glib / glib-export.lisp
index d197ca58ba06e38e32a45ce57d88215d77278401..0b10300641c06cfb3713380e846a703695d5b4fe 100644 (file)
@@ -1,5 +1,5 @@
 ;; Common Lisp bindings for GTK+ v2.0
-;; Copyright (C) 2000 Espen S. Johnsen <espejohn@online.no>
+;; Copyright (C) 2000 Espen S. Johnsen <esj@stud.cs.uit.no>
 ;;
 ;; This library is free software; you can redistribute it and/or
 ;; modify it under the terms of the GNU Lesser General Public
@@ -15,7 +15,7 @@
 ;; License along with this library; if not, write to the Free Software
 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-;; $Id: glib-export.lisp,v 1.2 2000-08-17 22:43:02 espen Exp $
+;; $Id: glib-export.lisp,v 1.4 2001-04-29 20:20:39 espen Exp $
 
 
 ;;; Autogenerating exported symbols
@@ -29,6 +29,12 @@   (defexport define-foreign (name &rest args)
        name
       (second name)))
 
+  (defexport defbinding (name &rest args)
+    (declare (ignore args))
+    (if (symbolp name)
+       name
+      (second name)))
+
   (defexport deftype (name &rest args)
     (declare (ignore args))
     (if (symbolp name)
@@ -41,5 +47,10 @@   (defexport define-type-method-fun (name lambda-list)
 
 (export-from-file #p"clg:glib;gutils.lisp")
 (export-from-file #p"clg:glib;glib.lisp")
+(export-from-file #p"clg:glib;proxy.lisp")
+(export-from-file #p"clg:glib;gboxed.lisp")
 (export-from-file #p"clg:glib;gtype.lisp")
+(export-from-file #p"clg:glib;gparam.lisp")
+(export-from-file #p"clg:glib;gcallback.lisp")
 (export-from-file #p"clg:glib;gobject.lisp")
+(export-from-file #p"clg:glib;genums.lisp")