X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=glib%2Fgobject.ffi.lisp;h=cb745284483d417c73ad34aa75f8a1de17bcc04a;hb=5a98cf219b0e6a1059f75ed4dd93bce9efc443f6;hp=626900f213454b5001427b2ea1ff8be2daf0730d;hpb=22a6f349bcc14acdcfe5af04f00bf33415493129;p=cl-gtk2.git diff --git a/glib/gobject.ffi.lisp b/glib/gobject.ffi.lisp index 626900f..cb74528 100644 --- a/glib/gobject.ffi.lisp +++ b/glib/gobject.ffi.lisp @@ -18,34 +18,6 @@ Example: (at-init () (%g-type-init)) -(defcfun (g-type-name "g_type_name") :string - "Returns the name of a GType.@see{g-type-from-name} - -Example: -@pre{ -\(g-type-from-name \"GtkLabel\") -=> 7151952 -\(g-type-name 7151952) -=> \"GtkLabel\" -} -@arg[type]{GType designator (see @class{g-type-designator})} -@return{a string}" - (type g-type-designator)) - -(defcfun (g-type-from-name "g_type_from_name") g-type - "Returns the numeric identifier of a GType by its name. @see{g-type-name} - -Example: -@pre{ -\(g-type-from-name \"GtkLabel\") -=> 7151952 -\(g-type-name 7151952) -=> \"GtkLabel\" -} -@arg[name]{a string - name of GType} -@return{an integer}" - (name :string)) - (defcfun g-type-parent g-type-designator "Returns the parent of a GType. @see{g-type-chilren}