From: espen Date: Sun, 31 Oct 2004 11:41:06 +0000 (+0000) Subject: Added library initialization X-Git-Tag: clg-0-90~243 X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/d12664074c66e0d1d4da075887026f1ea0a7f65b?ds=sidebyside Added library initialization --- diff --git a/glib/gtype.lisp b/glib/gtype.lisp index 537aa83..d3bca2f 100644 --- a/glib/gtype.lisp +++ b/glib/gtype.lisp @@ -15,15 +15,15 @@ ;; 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: gtype.lisp,v 1.17 2004/10/27 14:59:00 espen Exp $ +;; $Id: gtype.lisp,v 1.18 2004/10/31 11:41:06 espen Exp $ (in-package "GLIB") (use-prefix "g") -;(load-shared-library "libgobject-2.0" :init "g_type_init") - -;;;; +;; Initialize the glib type system +(defbinding type-init () nil) +(type-init) (deftype type-number () '(unsigned 32))