Changeset 5332 for trunk/src/kernel32/hmevent.cpp
- Timestamp:
- Mar 19, 2001, 8:27:14 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmevent.cpp
r2802 r5332 1 /* $Id: hmevent.cpp,v 1. 3 2000-02-16 14:23:59sandervl Exp $ */1 /* $Id: hmevent.cpp,v 1.4 2001-03-19 19:27:13 sandervl Exp $ */ 2 2 3 3 /* … … 140 140 BOOL HMDeviceEventClass::SetEvent(PHMHANDLEDATA pHMHandleData) 141 141 { 142 //testestest 142 143 dprintf(("KERNEL32: HandleManager::Event::SetEvent(%08xh)\n", 143 pHMHandleData->hHMHandle));144 pHMHandleData->hHMHandle)); 144 145 145 146 return (O32_SetEvent(pHMHandleData->hHMHandle)); … … 161 162 BOOL HMDeviceEventClass::PulseEvent(PHMHANDLEDATA pHMHandleData) 162 163 { 163 dprintf (("KERNEL32: HandleManager::Event::PulseEvent(%08xh)\n",164 pHMHandleData->hHMHandle));164 dprintf2(("KERNEL32: HandleManager::Event::PulseEvent(%08xh)\n", 165 pHMHandleData->hHMHandle)); 165 166 166 167 return (O32_PulseEvent(pHMHandleData->hHMHandle)); … … 182 183 BOOL HMDeviceEventClass::ResetEvent(PHMHANDLEDATA pHMHandleData) 183 184 { 184 dprintf (("KERNEL32: HandleManager::Event::ResetEvent(%08xh)\n",185 pHMHandleData->hHMHandle));185 dprintf2(("KERNEL32: HandleManager::Event::ResetEvent(%08xh)\n", 186 pHMHandleData->hHMHandle)); 186 187 187 188 return (O32_ResetEvent(pHMHandleData->hHMHandle));
Note:
See TracChangeset
for help on using the changeset viewer.