Ejemplo n.º 1
0
 private static extern void SetWindowPosCallback32(IntPtr window, WindowPosFun cbfun);
Ejemplo n.º 2
0
 public static void SetWindowPosCallback(IntPtr window, WindowPosFun cbfun)
 {
     currentWindowPosFun = cbfun;
     _SetWindowPosCallback(window, currentWindowPosFun);
 }
Ejemplo n.º 3
0
 internal static void SetWindowPosCallback(IntPtr window, WindowPosFun cbfun)
 {
     if (!Environment.Is64BitProcess)
     {
         SetWindowPosCallback32(window, cbfun);
     }
     else
     {
         SetWindowPosCallback64(window, cbfun);
     }
 }
Ejemplo n.º 4
0
 private static extern void _SetWindowPosCallback(IntPtr window, WindowPosFun cbfun);