EventLoop.PeekMessage C# (CSharp) Method

PeekMessage() private method

private PeekMessage ( MSG, &lpMsg, IntPtr, hwnd, uint wMsgFilterMin, uint wMsgFilterMax, uint wRemoveMsg ) : bool
lpMsg MSG,
hwnd IntPtr,
wMsgFilterMin uint
wMsgFilterMax uint
wRemoveMsg uint
return bool
            private static extern bool PeekMessage(out MSG lpMsg, IntPtr hwnd, uint wMsgFilterMin, uint wMsgFilterMax, uint wRemoveMsg);
            [DllImport("user32.dll")]