Changeset 9598 for trunk/src/user32/HOOK.CPP
- Timestamp:
- Jan 3, 2003, 5:35:58 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/HOOK.CPP
r8474 r9598 1 /* $Id: HOOK.CPP,v 1.3 8 2002-05-23 07:13:00 sandervl Exp $ */1 /* $Id: HOOK.CPP,v 1.39 2003-01-03 16:35:50 sandervl Exp $ */ 2 2 3 3 /* … … 731 731 BOOL WIN32API CallMsgFilterA(LPMSG msg, INT code ) 732 732 { 733 #if 0 //CB: not a Win32 API and unimplemented734 if (GetSysModalWindow()) return FALSE; /* ??? */735 #endif736 733 if (HOOK_CallHooksA( WH_SYSMSGFILTER, code, 0, (LPARAM)msg )) 737 734 return TRUE; … … 745 742 BOOL WIN32API CallMsgFilterW(LPMSG msg, INT code ) 746 743 { 747 #if 0 //CB: not a Win32 API and unimplemented748 if (GetSysModalWindow()) return FALSE; /* ??? */749 #endif750 744 if (HOOK_CallHooksW( WH_SYSMSGFILTER, code, 0, (LPARAM)msg )) 751 745 return TRUE; … … 783 777 remove && 784 778 (msg->hwnd != GetDesktopWindow()) && 785 ! IsMenuActive())779 !MENU_IsMenuActive()) 786 780 { 787 781 HELPINFO hi;
Note:
See TracChangeset
for help on using the changeset viewer.