gstreamer/gstreamer-sharp/glue/gobject.c
Sebastian Dröge ffa5406b48 Fix/complete the Caps bindings
Also make sure in Gst.Structure that we're having a mutable structure
before changing any content.
2009-04-14 13:31:06 +02:00

19 lines
289 B
C

#include <glib-object.h>
gint
gstsharp_g_closure_sizeof (void)
{
return sizeof (GClosure);
}
GType
gstsharp_g_type_from_instance (GTypeInstance * instance)
{
return G_TYPE_FROM_INSTANCE (instance);
}
GType
gstsharp_g_value_type (const GValue * val)
{
return G_VALUE_TYPE (val);
}