Example #1
0
 private static extern MouseButtonFun SetMouseButtonCallback32(IntPtr window, MouseButtonFun cbfun);
Example #2
0
 public static void SetMouseButtonCallback(IntPtr window, MouseButtonFun cbfun)
 {
     currentMouseButtonFun = cbfun;
     _SetMouseButtonCallback(window, currentMouseButtonFun);
 }
Example #3
0
 internal static MouseButtonFun SetMouseButtonCallback(IntPtr window, MouseButtonFun cbfun)
 {
     if (!Environment.Is64BitProcess)
     {
         return SetMouseButtonCallback32(window, cbfun);
     }
     else
     {
         return SetMouseButtonCallback64(window, cbfun);
     }
 }
Example #4
0
 private static extern void _SetMouseButtonCallback(IntPtr window, MouseButtonFun cbfun);