From 5a98cf219b0e6a1059f75ed4dd93bce9efc443f6 Mon Sep 17 00:00:00 2001 From: Dmitry Kalyanov Date: Thu, 3 Sep 2009 07:24:39 +0400 Subject: [PATCH] Removed duplicate definitions of g-type-name, g-type-from-name --- glib/gobject.ffi.lisp | 28 ---------------------------- 1 file changed, 28 deletions(-) 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} -- 1.7.10.4