Changeset 85121 in vbox for trunk/src/VBox/HostDrivers/VBoxUSB/win
- Timestamp:
- Jul 8, 2020 7:33:26 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139061
- Location:
- trunk/src/VBox/HostDrivers/VBoxUSB/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/lib/VBoxUsbLib-win.cpp
r82968 r85121 1820 1820 1821 1821 1822 static VOID CALLBACK usbLibTimerCallback(__in PVOID lpParameter, __in BOOLEAN TimerOrWaitFired) 1822 static VOID CALLBACK usbLibTimerCallback(__in PVOID lpParameter, __in BOOLEAN TimerOrWaitFired) RT_NOTHROW_DEF 1823 1823 { 1824 1824 RT_NOREF2(lpParameter, TimerOrWaitFired); … … 1886 1886 } 1887 1887 1888 /** @todo r=bird: Use an IPRT thread ?*/1889 static DWORD WINAPI usbLibMsgThreadProc(__in LPVOID lpParameter) 1888 /** @todo r=bird: Use an IPRT thread!! */ 1889 static DWORD WINAPI usbLibMsgThreadProc(__in LPVOID lpParameter) RT_NOTHROW_DEF 1890 1890 { 1891 1891 static LPCSTR s_szVBoxUsbWndClassName = "VBoxUsbLibClass"; … … 2050 2050 if (g_VBoxUsbGlobal.hTimerQueue) 2051 2051 { 2052 /** @todo r=bird: Which lunatic used CreateThread here?!? 2053 * Only the CRT uses CreateThread. */ 2052 2054 g_VBoxUsbGlobal.hThread = CreateThread( 2053 2055 NULL, /*__in_opt LPSECURITY_ATTRIBUTES lpThreadAttributes, */ -
trunk/src/VBox/HostDrivers/VBoxUSB/win/mon/VBoxUsbMon.h
r82968 r85121 60 60 void vboxUsbDbgPrintUnicodeString(PUNICODE_STRING pUnicodeString); 61 61 62 typedef DECLCALLBACK (BOOLEAN) FNVBOXUSBMONDEVWALKER(PFILE_OBJECT pHubFile, PDEVICE_OBJECT pHubDo, PVOID pvContext);62 typedef DECLCALLBACKTYPE(BOOLEAN, FNVBOXUSBMONDEVWALKER,(PFILE_OBJECT pHubFile, PDEVICE_OBJECT pHubDo, PVOID pvContext)); 63 63 typedef FNVBOXUSBMONDEVWALKER *PFNVBOXUSBMONDEVWALKER; 64 64
Note:
See TracChangeset
for help on using the changeset viewer.