コード例 #1
0
ファイル: IOChannel.cs プロジェクト: willy40/gtk-sharp
 static extern uint g_io_add_watch_full(IntPtr raw, int priority, int condition, IOFuncNative func, IntPtr user_data, DestroyNotify notify);
コード例 #2
0
ファイル: IOChannel.cs プロジェクト: willy40/gtk-sharp
 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
ファイル: GIOChannel.cs プロジェクト: theojulienne/lucid
 static extern void g_source_set_callback(IntPtr source, IOFuncNative func, 
     IntPtr user_data, DestroyNotify notify);