IsWindowVisible() private method

private IsWindowVisible ( IntPtr hWnd ) : bool
hWnd System.IntPtr
return bool
Beispiel #1
0
        private bool IsMPCAlive()
        {
            if (!WinAPI.IsWindowVisible(m_hWndMPC))
            {
                this.RemoveHook();
                return(false);
            }

            return(true);
        }