mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[Win32k]
- Create call message filter for internal use. svn path=/trunk/; revision=62698
This commit is contained in:
@@ -1906,6 +1906,22 @@ IntUninitMessagePumpHook()
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL FASTCALL
|
||||
IntCallMsgFilter( LPMSG lpmsg, INT code)
|
||||
{
|
||||
BOOL Ret = FALSE;
|
||||
|
||||
if ( co_HOOK_CallHooks( WH_SYSMSGFILTER, code, 0, (LPARAM)lpmsg))
|
||||
{
|
||||
Ret = TRUE;
|
||||
}
|
||||
else
|
||||
{
|
||||
Ret = co_HOOK_CallHooks( WH_MSGFILTER, code, 0, (LPARAM)lpmsg);
|
||||
}
|
||||
return Ret;
|
||||
}
|
||||
|
||||
/** Functions ******************************************************************/
|
||||
|
||||
BOOL
|
||||
|
||||
@@ -254,6 +254,7 @@ VOID FASTCALL IdlePong(VOID);
|
||||
BOOL FASTCALL co_MsqReplyMessage(LRESULT);
|
||||
VOID FASTCALL MsqWakeQueue(PTHREADINFO,DWORD,BOOL);
|
||||
VOID FASTCALL ClearMsgBitsMask(PTHREADINFO,UINT);
|
||||
BOOL FASTCALL IntCallMsgFilter(LPMSG,INT);
|
||||
|
||||
int UserShowCursor(BOOL bShow);
|
||||
PCURICON_OBJECT
|
||||
|
||||
Reference in New Issue
Block a user