Searched defs:DeviceInstallParams (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Installer/
H A DVBoxGuestDrvInst.cpp69 SP_DEVINSTALL_PARAMS DeviceInstallParams={0}; local
98 memset(&DeviceInstallParams, 0, sizeof(SP_DEVINSTALL_PARAMS));
99 DeviceInstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS);
103 &DeviceInstallParams);
108 DeviceInstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS);
109 DeviceInstallParams.Flags |= DI_NOFILECOPY | /* We did our own file copying */
115 wsprintf(DeviceInstallParams.DriverPath,
121 &DeviceInstallParams);
205 memset(&DeviceInstallParams, 0,sizeof(SP_DEVINSTALL_PARAMS));
206 DeviceInstallParams
[all...]
/vbox/src/VBox/HostDrivers/VBoxNetFlt/win/cfg/
H A DVBoxNetCfg.cpp2647 SP_DEVINSTALL_PARAMS DeviceInstallParams; local
2697 DeviceInstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS);
2699 &DeviceInstallParams);
2702 memset(DeviceInstallParams.DriverPath, 0, sizeof(DeviceInstallParams.DriverPath));
2704 if (pathLenght < sizeof(DeviceInstallParams.DriverPath)/sizeof(DeviceInstallParams.DriverPath[0]))
2706 memcpy(DeviceInstallParams.DriverPath, pInfPath, pathLenght*sizeof(DeviceInstallParams.DriverPath[0]));
2710 DeviceInstallParams
[all...]

Completed in 49 milliseconds