mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
c16ad873a6
svn path=/branches/reactos-yarotows/; revision=46279
24 lines
560 B
C
24 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);
|