示例#1
0
 static extern uint g_io_add_watch_full(IntPtr raw, int priority, int condition, IOFuncNative func, IntPtr user_data, DestroyNotify notify);
示例#2
0
 public IOFuncWrapper(IOFunc managed)
 {
     this.managed   = managed;
     NativeDelegate = new IOFuncNative(NativeCallback);
 }
示例#3
0
		public IOFuncWrapper (IOFunc managed)
		{
			this.managed = managed;
			NativeDelegate = new IOFuncNative (NativeCallback);
		}
示例#4
0
		static extern uint g_io_add_watch_full (IntPtr raw, int priority, int condition, IOFuncNative func, IntPtr user_data, DestroyNotify notify);
示例#5
0
 static extern void g_source_set_callback(IntPtr source, IOFuncNative func, 
     IntPtr user_data, DestroyNotify notify);