mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-27 07:05:30 +00:00
17 lines
248 B
C
17 lines
248 B
C
|
/* value.c : Glue to allocate GValues on the heap.
|
||
|
*
|
||
|
* Author: Mike Kestner <mkestner@speakeasy.net>
|
||
|
*
|
||
|
* <c> 2002 Mike Kestner
|
||
|
*/
|
||
|
|
||
|
#include <glib-object.h>
|
||
|
|
||
|
gchar *
|
||
|
gtksharp_get_type_name (GObject *obj)
|
||
|
{
|
||
|
return G_OBJECT_TYPE_NAME (obj);
|
||
|
}
|
||
|
|
||
|
|