X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/blobdiff_plain/c8c48a4c0afa3a32f381c3f5662e34ae1874ea2c..0c0db5e2b38bf90a44b4cfb4646102470093fed1:/glib/glib-export.lisp diff --git a/glib/glib-export.lisp b/glib/glib-export.lisp index 3222f0f..21c269a 100644 --- a/glib/glib-export.lisp +++ b/glib/glib-export.lisp @@ -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.3 2000-11-09 20:29:19 espen Exp $ +;; $Id: glib-export.lisp,v 1.5 2001-05-11 16:11:07 espen Exp $ ;;; Autogenerating exported symbols @@ -23,13 +23,7 @@ (in-package "GLIB") (eval-when (:compile-toplevel :load-toplevel :execute) - (defexport define-foreign (name &rest args) - (declare (ignore args)) - (if (symbolp name) - name - (second name))) - - (defexport deftype (name &rest args) + (defexport defbinding (name &rest args) (declare (ignore args)) (if (symbolp name) name @@ -37,11 +31,18 @@ (defexport deftype (name &rest args) (defexport define-type-method-fun (name lambda-list) (declare (ignore lambda-list)) - name)) + name) + + (defexport define-types-by-introspection (prefix &rest args) + (list-autoexported-symbols (expand-type-definitions prefix args)))) + (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")