예제 #1
1
파일: Win32Native.cs 프로젝트: Zeludon/FEZ
 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);
 }
예제 #2
1
파일: Win32Native.cs 프로젝트: Zeludon/FEZ
 public static IntPtr GetWindowLong(HandleRef hWnd, Win32Native.WindowLongType index)
 {
     if (IntPtr.Size == 4)
     return Win32Native.GetWindowLong32(hWnd, index);
       else
     return Win32Native.GetWindowLong64(hWnd, index);
 }
예제 #3
0
파일: Win32Native.cs 프로젝트: Zeludon/FEZ
 private static IntPtr SetWindowLongPtr64(HandleRef hwnd, Win32Native.WindowLongType index, IntPtr wndProc);
예제 #4
0
파일: Win32Native.cs 프로젝트: Zeludon/FEZ
 private static IntPtr GetWindowLong64(HandleRef hwnd, Win32Native.WindowLongType index);
예제 #5
0
파일: Win32Native.cs 프로젝트: Zeludon/FEZ
 public static int TranslateMessage(ref Win32Native.NativeMessage lpMsg);
예제 #6
0
파일: Win32Native.cs 프로젝트: Zeludon/FEZ
 public static int PeekMessage(out Win32Native.NativeMessage lpMsg, IntPtr hWnd, int wMsgFilterMin, int wMsgFilterMax, int wRemoveMsg);
예제 #7
0
파일: Win32Native.cs 프로젝트: Zeludon/FEZ
 public static int GetMessage(out Win32Native.NativeMessage lpMsg, IntPtr hWnd, int wMsgFilterMin, int wMsgFilterMax);
예제 #8
0
파일: Win32Native.cs 프로젝트: Zeludon/FEZ
 public static int DispatchMessage(ref Win32Native.NativeMessage lpMsg);