Example #1
0
        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);
        }
Example #2
0
 public PrintHelper(PrintFuncNative native)
 {
     this.native = native;
 }
Example #3
0
 static extern PrintFuncNative g_set_printerr_handler(PrintFuncNative handler);
Example #4
0
			public PrintHelper (PrintFuncNative native)
			{
				this.native = native;
			}
Example #5
0
		static extern PrintFuncNative g_set_printerr_handler (PrintFuncNative handler);
Example #6
0
 internal static extern PrintFuncNative GSetPrinterrHandler(PrintFuncNative handler);