SublimeOverlay.ChildTracker.WinEventProc C# (CSharp) Method

WinEventProc() static private method

static private WinEventProc ( IntPtr hWinEventHook, uint eventType, IntPtr hwnd, int idObject, int idChild, uint dwEventThread, uint dwmsEventTime ) : void
hWinEventHook System.IntPtr
eventType uint
hwnd System.IntPtr
idObject int
idChild int
dwEventThread uint
dwmsEventTime uint
return void
        static void WinEventProc(IntPtr hWinEventHook, uint eventType,
            IntPtr hwnd, int idObject, int idChild, uint dwEventThread, uint dwmsEventTime)
        {
            if (hwnd != windowHWND)
            {
                return;
            }
            RestoreWindow(hwnd);
            if (ChildMinimized != null) ChildMinimized();
        }
        public static void RestoreWindow(IntPtr hwnd)