Changeset 63096 in vbox for trunk/src/VBox
- Timestamp:
- Aug 6, 2016 3:28:11 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxHook/VBoxHook.cpp
r63095 r63096 54 54 DWORD dwEventThread, DWORD dwmsEventTime) 55 55 { 56 RT_NOREF(hWinEventHook, idChild, dwEventThread, dwmsEventTime); 56 57 DWORD dwStyle; 57 58 if ( idObject != OBJID_WINDOW … … 98 99 dprintf(("OpenEvent returned %x (last err=%x)\n", g_hWinNotifyEvent, GetLastError())); 99 100 } 100 BOOL ret= SetEvent(g_hWinNotifyEvent);101 dprintf(("SetEvent %x returned %d (last error %x)\n", g_hWinNotifyEvent, ret, GetLastError()));101 BOOL fRc = SetEvent(g_hWinNotifyEvent); 102 dprintf(("SetEvent %x returned %d (last error %x)\n", g_hWinNotifyEvent, fRc, GetLastError())); NOREF(fRc); 102 103 break; 103 104 } … … 108 109 DWORD dwEventThread, DWORD dwmsEventTime) 109 110 { 111 RT_NOREF(hWinEventHook, event, hwnd, idObject, idChild, dwEventThread, dwmsEventTime); 110 112 if (!g_hDesktopNotifyEvent) 111 113 { … … 113 115 dprintf(("OpenEvent returned %x (last err=%x)\n", g_hDesktopNotifyEvent, GetLastError())); 114 116 } 115 BOOL ret= SetEvent(g_hDesktopNotifyEvent);116 dprintf(("SetEvent %x returned %d (last error %x)\n", g_hDesktopNotifyEvent, ret, GetLastError()));117 BOOL fRc = SetEvent(g_hDesktopNotifyEvent); 118 dprintf(("SetEvent %x returned %d (last error %x)\n", g_hDesktopNotifyEvent, fRc, GetLastError())); NOREF(fRc); 117 119 } 118 120
Note:
See TracChangeset
for help on using the changeset viewer.