Changeset 62686 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Jul 29, 2016 1:25:48 PM (8 years ago)
- Location:
- trunk/src/VBox/HostDrivers
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/Install/USBInstall.cpp
r62679 r62686 21 21 *********************************************************************************************************************************/ 22 22 #include <iprt/win/windows.h> 23 #include < setupapi.h>23 #include <iprt/win/setupapi.h> 24 24 #include <newdev.h> 25 25 #include <iprt/assert.h> -
trunk/src/VBox/HostDrivers/VBoxUSB/win/Install/USBUninstall.cpp
r62679 r62686 21 21 *********************************************************************************************************************************/ 22 22 #include <iprt/win/windows.h> 23 #include < setupapi.h>23 #include <iprt/win/setupapi.h> 24 24 #include <newdev.h> 25 25 -
trunk/src/VBox/HostDrivers/VBoxUSB/win/lib/VBoxUsbLib-win.cpp
r62679 r62686 39 39 #include <stdio.h> 40 40 #pragma warning (disable:4200) /* shuts up the empty array member warnings */ 41 #include < setupapi.h>41 #include <iprt/win/setupapi.h> 42 42 #include <usbdi.h> 43 43 #include <hidsdi.h> -
trunk/src/VBox/HostDrivers/VBoxUSB/win/testcase/USBTest.cpp
r62679 r62686 21 21 *********************************************************************************************************************************/ 22 22 #include <iprt/win/windows.h> 23 #include < setupapi.h>23 #include <iprt/win/setupapi.h> 24 24 #include <newdev.h> 25 25 #include <iprt/assert.h> -
trunk/src/VBox/HostDrivers/win/cfg/VBoxDrvCfg.cpp
r62491 r62686 22 22 #include <VBox/VBoxDrvCfg-win.h> 23 23 24 #include < setupapi.h>24 #include <iprt/win/setupapi.h> 25 25 #include <shlobj.h> 26 26 … … 362 362 363 363 LPWSTR lpszModels; 364 LPWSTR lpszPnPId;365 364 HRESULT hr = vboxDrvCfgInfQueryModelsSectionName(hInf, &lpszModels, NULL); 366 365 NonStandardLogRelCrap((__FUNCTION__ ": vboxDrvCfgInfQueryModelsSectionName returned lpszModels = (%S)", lpszModels)); … … 371 370 } 372 371 372 LPWSTR lpszPnPId = NULL; 373 373 INFCONTEXT InfCtx; 374 374 hr = vboxDrvCfgInfQueryContext(hInf, lpszModels, NULL, &InfCtx); … … 454 454 { 455 455 DWORD dwErr = ERROR_SUCCESS; 456 int counter = 0;457 456 HDEVINFO hDevInfo = SetupDiCreateDeviceInfoList( 458 457 pGuid, /* IN LPGUID ClassGuid, OPTIONAL */
Note:
See TracChangeset
for help on using the changeset viewer.