reactos/subsystems/win32/win32k/include/focus.h
Timo Kreuzer 9ea495ba33 Create a branch for header work.
svn path=/branches/header-work/; revision=45691
2010-02-26 22:57:55 +00:00

25 lines
560 B
C

#pragma once
/*
* These functions take the window handles from current message queue.
*/
HWND FASTCALL
IntGetCaptureWindow(VOID);
HWND FASTCALL
IntGetFocusWindow(VOID);
/*
* These functions take the window handles from current thread queue.
*/
HWND FASTCALL
IntGetThreadFocusWindow(VOID);
HWND APIENTRY IntGetCapture(VOID);
HWND FASTCALL UserGetActiveWindow(VOID);
BOOL FASTCALL
co_IntMouseActivateWindow(PWINDOW_OBJECT Window);
BOOL FASTCALL
co_IntSetForegroundWindow(PWINDOW_OBJECT Window);
HWND FASTCALL
co_IntSetActiveWindow(PWINDOW_OBJECT Window);