Changeset 70285 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Dec 21, 2017 3:30:27 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119882
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/lib/VBoxUsbLib-win.cpp
r70277 r70285 924 924 return VINF_SUCCESS; 925 925 } 926 927 #if 0 /* unused */928 static PUSBSUP_GET_DEVICES usbLibMonGetDevRqAlloc(uint32_t cDevs, PDWORD pcbRq)929 {930 DWORD cbRq = RT_OFFSETOF(USBSUP_GET_DEVICES, aDevices[cDevs]);931 PUSBSUP_GET_DEVICES pRq = (PUSBSUP_GET_DEVICES)RTMemAllocZ(cbRq);932 Assert(pRq);933 if (!pRq)934 return NULL;935 pRq->cDevices = cDevs;936 *pcbRq = cbRq;937 return pRq;938 }939 #endif940 926 941 927 static int usbLibMonDevicesCmp(PUSBDEVICE pDev, PVBOXUSB_DEV pDevInfo)
Note:
See TracChangeset
for help on using the changeset viewer.