X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/c9819f3ec61840abd576766046484d756e4894ce..6f69de4b6790d3c71a317e6fd678a16bdbe204d0:/glib/glib-export.lisp diff --git a/glib/glib-export.lisp b/glib/glib-export.lisp index 2ec5de0..01da852 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.4 2001/04/29 20:20:39 espen Exp $ ;;; Autogenerating exported symbols @@ -29,6 +29,12 @@ 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,7 +47,10 @@ (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")