Exemplo n.º 1
1
 public static IntPtr SetWindowLong(HandleRef hwnd, Win32Native.WindowLongType index, IntPtr wndProcPtr)
 {
     if (IntPtr.Size == 4)
     return Win32Native.SetWindowLong32(hwnd, index, wndProcPtr);
       else
     return Win32Native.SetWindowLongPtr64(hwnd, index, wndProcPtr);
 }
Exemplo n.º 2
1
 public static IntPtr GetWindowLong(HandleRef hWnd, Win32Native.WindowLongType index)
 {
     if (IntPtr.Size == 4)
     return Win32Native.GetWindowLong32(hWnd, index);
       else
     return Win32Native.GetWindowLong64(hWnd, index);
 }
Exemplo n.º 3
0
 private static IntPtr SetWindowLongPtr64(HandleRef hwnd, Win32Native.WindowLongType index, IntPtr wndProc);
Exemplo n.º 4
0
 private static IntPtr GetWindowLong64(HandleRef hwnd, Win32Native.WindowLongType index);
Exemplo n.º 5
0
 public static int TranslateMessage(ref Win32Native.NativeMessage lpMsg);
Exemplo n.º 6
0
 public static int PeekMessage(out Win32Native.NativeMessage lpMsg, IntPtr hWnd, int wMsgFilterMin, int wMsgFilterMax, int wRemoveMsg);
Exemplo n.º 7
0
 public static int GetMessage(out Win32Native.NativeMessage lpMsg, IntPtr hWnd, int wMsgFilterMin, int wMsgFilterMax);
Exemplo n.º 8
0
 public static int DispatchMessage(ref Win32Native.NativeMessage lpMsg);