mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 00:46:16 +01:00
04d27d2299
Mon Oct 20 20:38:06 2003 Matthias Clasen <maclas@gmx.de> * gobject/gobject.i: Removed... * gobject/gobject.cI: ...and readded. * gobject/gobject.types: Change to the standard file extension for included hunks of C code. Mon Oct 20 20:34:33 2003 Matthias Clasen <maclas@gmx.de> * gobject/Makefile.am (INCLUDES): Add $(top_builddir)/glib as an include dir again, this time for real.
12 lines
337 B
Plaintext
12 lines
337 B
Plaintext
/*
|
|
* This is a hack to work around a limitation of gtkdoc-scan: it insists
|
|
* on putting () behind every symbol listed in gobject.types. Thus we
|
|
* can't put G_TYPE_OBJECT there, but have to sneak a g_object_get_type()
|
|
* function in the generated source via an #include.
|
|
*/
|
|
GType
|
|
g_object_get_type (void)
|
|
{
|
|
return G_TYPE_OBJECT;
|
|
}
|