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