예제 #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
파일: IOChannel.cs 프로젝트: jwzl/ossbuild
		public IOFuncWrapper (IOFunc managed)
		{
			this.managed = managed;
			NativeDelegate = new IOFuncNative (NativeCallback);
		}
예제 #4
0
파일: IOChannel.cs 프로젝트: jwzl/ossbuild
		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);