Changeset 21955 for trunk/src/user32/windowmsg.cpp
- Timestamp:
- Jan 31, 2012, 10:25:42 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/windowmsg.cpp
r21916 r21955 1115 1115 // queue since the last call to GetQueueStatus 1116 1116 //****************************************************************************** 1117 DWORD WIN32API GetQueueStatus( 1117 DWORD WIN32API GetQueueStatus(UINT flags) 1118 1118 { 1119 1119 DWORD queueStatus; 1120 1120 1121 queueStatus = OSLibWinQueryQueueStatus( );1121 queueStatus = OSLibWinQueryQueueStatus(flags); 1122 1122 1123 1123 dprintf(("USER32: GetQueueStatus %x returned %x", flags, queueStatus & MAKELONG(flags, flags))); … … 1144 1144 BOOL rc; 1145 1145 1146 queueStatus = OSLibWinQueryQueueStatus( );1146 queueStatus = OSLibWinQueryQueueStatus(QS_INPUT); 1147 1147 1148 1148 rc = (queueStatus & (QS_KEY | QS_MOUSEBUTTON)) ? TRUE : FALSE;
Note:
See TracChangeset
for help on using the changeset viewer.