mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
79c926c893
- Add IntIsWindowFullscreen function to judge whether the window is fullscreen. - Add IntCheckFullscreen function to notify HSHELL_RUDEAPPACTIVATE if fullscreen. - Add IntCheckFullscreen call in UpdateShellHook function. - Add IntCheckFullscreen call in co_WinPosSetWindowPos function. CORE-16130
33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
#pragma once
|
|
|
|
extern PUSER_MESSAGE_QUEUE gpqForeground;
|
|
extern PUSER_MESSAGE_QUEUE gpqForegroundPrev;
|
|
extern PTHREADINFO ptiLastInput;
|
|
|
|
/*
|
|
* These functions take the window handles from current message queue.
|
|
*/
|
|
HWND FASTCALL IntGetCaptureWindow(VOID);
|
|
HWND FASTCALL co_UserSetCapture(HWND hWnd);
|
|
BOOL FASTCALL IntReleaseCapture(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(PWND Window);
|
|
BOOL FASTCALL co_IntSetForegroundWindow(PWND Window);
|
|
BOOL FASTCALL co_IntSetForegroundWindowMouse(PWND Window);
|
|
BOOL FASTCALL co_IntSetActiveWindow(PWND,BOOL,BOOL,BOOL);
|
|
BOOL FASTCALL IntUserSetActiveWindow(PWND,BOOL,BOOL,BOOL);
|
|
BOOL FASTCALL UserSetActiveWindow(PWND Wnd);
|
|
BOOL FASTCALL IntLockSetForegroundWindow(UINT uLockCode);
|
|
BOOL FASTCALL IntAllowSetForegroundWindow(DWORD dwProcessId);
|
|
VOID FASTCALL IntActivateWindow(PWND,PTHREADINFO,HANDLE,DWORD);
|
|
BOOL FASTCALL IntDeactivateWindow(PTHREADINFO,HANDLE);
|
|
BOOL FASTCALL co_IntSetForegroundMessageQueue(PWND,PTHREADINFO,BOOL,DWORD );
|
|
VOID FASTCALL UpdateShellHook(PWND);
|
|
BOOL FASTCALL IntCheckFullscreen(PWND Window);
|