示例#1
0
文件: API.cs 项目: jpbruyere/opentk
 internal static extern bool PeekMessage(ref MSG msg, IntPtr hWnd, int messageFilterMin, int messageFilterMax, PeekMessageFlags flags);
示例#2
0
 public static extern BOOL PeekMessageW(
     ref MSG msg,
     IntPtr hwnd             = default,
     uint msgMin             = 0,
     uint msgMax             = 0,
     PeekMessageFlags remove = PeekMessageFlags.PM_NOREMOVE);
示例#3
0
 public static extern bool PeekMessage(out NativeMessage message, IntPtr handle, uint filterMin, uint filterMax, PeekMessageFlags flags);
示例#4
0
 [DllImport("user32")]         //ANSI
 public static extern bool PeekMessageA(out NativeMSG lpMsg, int hWnd, uint wMsgFilterMin, uint wMsgFilterMax, PeekMessageFlags wRemoveMsg);
示例#5
0
 public static extern bool PeekMessage(out MSG msg, IntPtr hwnd, uint wFilterMin, uint wFilterMax, PeekMessageFlags flags);
示例#6
0
 public static bool PeekMessage(out Message lpMsg, IntPtr hWnd, uint wMsgFilterMin,
                                uint wMsgFilterMax, PeekMessageFlags wRemoveMsg)
 {
     return(User32Methods.PeekMessage(out lpMsg, hWnd, wMsgFilterMin, wMsgFilterMax, (uint)wRemoveMsg));
 }
示例#7
0
 public static extern bool PeekMessage(out Message msg, IntPtr hWnd, uint messageFilterMin, uint messageFilterMax,
                                       PeekMessageFlags flags);
 public static extern bool PeekMessage(out Message lpMsg, IntPtr hWnd, uint wMsgFilterMin,
                                       uint wMsgFilterMax, PeekMessageFlags wRemoveMsg);
示例#9
0
 internal static extern bool PeekMessage(ref Message msg, IntPtr hWnd, int wFilterMin, int wFilterMax, PeekMessageFlags flags);
示例#10
0
 public static extern bool PeekMessage(ref MSG msg, int hWnd, uint wFilterMin, uint wFilterMax, PeekMessageFlags flags);