- Timestamp:
- Dec 21, 2017 4:15:31 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/usblib-win.h
r70286 r70289 76 76 #endif 77 77 78 #define USBFLT_MAJOR_VERSION 179 #define USBFLT_MINOR_VERSION 380 81 78 #define USBMON_MAJOR_VERSION 5 82 79 #define USBMON_MINOR_VERSION 0 83 80 84 #define USBDRV_MAJOR_VERSION 481 #define USBDRV_MAJOR_VERSION 5 85 82 #define USBDRV_MINOR_VERSION 0 86 83 … … 124 121 { 125 122 HVBOXUSBDEVUSR hDevice; 126 uint8_t fAttached;127 uint8_t fHiSpeed;128 123 } USBSUP_GETDEV, *PUSBSUP_GETDEV; 129 124 -
trunk/src/VBox/HostDrivers/VBoxUSB/win/dev/VBoxUsbRt.cpp
r69500 r70289 493 493 && pSl->Parameters.DeviceIoControl.OutputBufferLength == sizeof(*pDev)) 494 494 { 495 /* Even if we don't return it, we need to query the HS flag for later use. */ 495 496 Status = VBoxUsbToolGetDeviceSpeed(pDevExt->pLowerDO, &pDevExt->Rt.fIsHighSpeed); 496 497 if (NT_SUCCESS(Status)) 497 498 { 498 499 pDev->hDevice = pDevExt->Rt.hMonDev; 499 pDev->fAttached = true;500 pDev->fHiSpeed = pDevExt->Rt.fIsHighSpeed;501 500 cbOut = sizeof (*pDev); 502 501 }
Note:
See TracChangeset
for help on using the changeset viewer.