mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
Move some content for gobject-unused.sgml and cleared empty entries. The
* docs/reference/gobject/tmpl/gobject-unused.sgml: * gobject/gobject.h: * gobject/gtype.c: * gobject/gtype.h: Move some content for gobject-unused.sgml and cleared empty entries. The remaining 4 ones should be checked by some else. If they are not needed. The file can be removed. svn path=/trunk/; revision=7087
This commit is contained in:
@@ -136,10 +136,46 @@ G_BEGIN_DECLS
|
||||
* The type for #GInitiallyUnowned.
|
||||
*/
|
||||
#define G_TYPE_INITIALLY_UNOWNED (g_initially_unowned_get_type())
|
||||
/**
|
||||
* G_INITIALLY_UNOWNED:
|
||||
* @object: Object which is subject to casting.
|
||||
*
|
||||
* Casts a #GInitiallyUnowned or derived pointer into a (GInitiallyUnowned*)
|
||||
* pointer. Depending on the current debugging level, this function may invoke
|
||||
* certain runtime checks to identify invalid casts.
|
||||
*/
|
||||
#define G_INITIALLY_UNOWNED(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_INITIALLY_UNOWNED, GInitiallyUnowned))
|
||||
/**
|
||||
* G_INITIALLY_UNOWNED_CLASS:
|
||||
* @class: a valid #GInitiallyUnownedClass
|
||||
*
|
||||
* Casts a derived #GInitiallyUnownedClass structure into a
|
||||
* #GInitiallyUnownedClass structure.
|
||||
*/
|
||||
#define G_INITIALLY_UNOWNED_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_INITIALLY_UNOWNED, GInitiallyUnownedClass))
|
||||
/**
|
||||
* G_IS_INITIALLY_UNOWNED:
|
||||
* @object: Instance to check for being a %G_TYPE_INITIALLY_UNOWNED.
|
||||
*
|
||||
* Checks whether a valid #GTypeInstance pointer is of type %G_TYPE_INITIALLY_UNOWNED.
|
||||
*/
|
||||
#define G_IS_INITIALLY_UNOWNED(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_INITIALLY_UNOWNED))
|
||||
/**
|
||||
* G_IS_INITIALLY_UNOWNED_CLASS:
|
||||
* @class: a #GInitiallyUnownedClass
|
||||
*
|
||||
* Checks whether @class "is a" valid #GInitiallyUnownedClass structure of type
|
||||
* %G_TYPE_INITIALLY_UNOWNED or derived.
|
||||
*/
|
||||
#define G_IS_INITIALLY_UNOWNED_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_INITIALLY_UNOWNED))
|
||||
/**
|
||||
* G_INITIALLY_UNOWNED_GET_CLASS:
|
||||
* @object: a #GInitiallyUnowned instance.
|
||||
*
|
||||
* Get the class structure associated to a #GInitiallyUnowned instance.
|
||||
*
|
||||
* Returns: pointer to object class structure.
|
||||
*/
|
||||
#define G_INITIALLY_UNOWNED_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_INITIALLY_UNOWNED, GInitiallyUnownedClass))
|
||||
/* GInitiallyUnowned ia a GObject with initially floating reference count */
|
||||
|
||||
|
Reference in New Issue
Block a user