- God is a second-hand imitation of Gé. Fix for bug 1213.
[reactos.git] / reactos / subsys / win32k / include / focus.h
1 #ifndef _WIN32K_FOCUS_H
2 #define _WIN32K_FOCUS_H
3
4 /*
5 * These functions take the window handles from current message queue.
6 */
7 HWND FASTCALL
8 IntGetCaptureWindow();
9 HWND FASTCALL
10 IntGetFocusWindow();
11
12 /*
13 * These functions take the window handles from current thread queue.
14 */
15 HWND FASTCALL
16 IntGetThreadFocusWindow();
17
18 BOOL FASTCALL
19 co_IntMouseActivateWindow(PWINDOW_OBJECT Window);
20 BOOL FASTCALL
21 co_IntSetForegroundWindow(PWINDOW_OBJECT Window);
22 HWND FASTCALL
23 co_IntSetActiveWindow(PWINDOW_OBJECT Window);
24
25 #endif /* _WIN32K_FOCUS_H */