示例#1
0
文件: Log.cs 项目: xclaesse/gtk-sharp
        public static PrintFunc SetPrintErrorHandler(PrintFunc handler)
        {
            PrintHelper     helper = new PrintHelper(handler);
            PrintFuncNative prev   = g_set_printerr_handler(helper.Handler);

            helper = new PrintHelper(prev);
            return(helper.Invoker);
        }
示例#2
0
文件: Log.cs 项目: xclaesse/gtk-sharp
 public PrintHelper(PrintFuncNative native)
 {
     this.native = native;
 }
示例#3
0
文件: Log.cs 项目: xclaesse/gtk-sharp
 static extern PrintFuncNative g_set_printerr_handler(PrintFuncNative handler);
示例#4
0
			public PrintHelper (PrintFuncNative native)
			{
				this.native = native;
			}
示例#5
0
		static extern PrintFuncNative g_set_printerr_handler (PrintFuncNative handler);
示例#6
0
 internal static extern PrintFuncNative GSetPrinterrHandler(PrintFuncNative handler);