Function
Gdkcontent_register_deserializer
Declaration [src]
void
gdk_content_register_deserializer (
  const char* mime_type,
  GType type,
  GdkContentDeserializeFunc deserialize,
  gpointer data,
  GDestroyNotify notify
)
Parameters
- mime_type
- 
            Type: const char*The mime type which the function can deserialize from. The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. 
- type
- 
            Type: GTypeThe type of objects that the function creates. 
- deserialize
- 
            Type: GdkContentDeserializeFuncThe callback. 
- data
- 
            Type: gpointerData that deserializecan access.The argument can be NULL.The data is owned by the caller of the function. 
- notify
- 
            Type: GDestroyNotifyDestroy notify for data.