Exemple #1
0
 public static extern unsafe void g_list_free_full(GList *list, GDestroyNotify free_func);
Exemple #2
0
 public static extern unsafe GHashTable *g_hash_table_new_full(
     GHashFunc hash_func,
     GEqualFunc key_equal_func,
     GDestroyNotify key_destroy_func,
     GDestroyNotify value_destroy_func);
Exemple #3
0
 public static extern GInputStreamPtr g_memory_input_stream_new_from_data(VoidPtr data, gssize len, GDestroyNotify destroy);
Exemple #4
0
		public static int AddHandler (IntPtr raw, int eventId, UnmanagedEventHandler handler, GDestroyNotify data_dtor)
		{
			return NativeMethods.event_object_add_handler (raw, eventId, handler, raw, data_dtor, false);
		}
Exemple #5
0
		public static int AddHandler (INativeEventObjectWrapper obj, int eventId, UnmanagedEventHandler handler, GDestroyNotify dtor_action)
		{
			return AddHandler (obj.NativeHandle, eventId, handler, dtor_action);
		}
Exemple #6
0
 public static extern void g_slist_free_full(IntPtr list, GDestroyNotify freeFunc);