Home
last modified time | relevance | path

Searched refs:InstallParams (Results 1 – 9 of 9) sorted by relevance

/reactos/dll/win32/setupapi/
H A Ddriver.c724 SP_DEVINSTALL_PARAMS_W InstallParams; in SetupDiBuildDriverInfoList() local
902 *InstallParams.DriverPath ? InstallParams.DriverPath : NULL, in SetupDiBuildDriverInfoList()
929 else if (*InstallParams.DriverPath) in SetupDiBuildDriverInfoList()
1179 InstallParams.Flags |= DI_DIDCOMPAT; in SetupDiBuildDriverInfoList()
1184 InstallParams.Flags |= DI_DIDCLASS; in SetupDiBuildDriverInfoList()
1232 SP_DEVINSTALL_PARAMS_W InstallParams; in SetupDiDestroyDriverInfoList() local
1500 SP_DEVINSTALL_PARAMS InstallParams; in SetupDiGetSelectedDriverW() local
2029 SP_DEVINSTALL_PARAMS InstallParams; in SetupDiGetDriverInstallParamsW() local
2115 SP_DEVINSTALL_PARAMS_W InstallParams; in SetupDiInstallDriverFiles() local
2142 if (InstallParams.InstallMsgHandler) in SetupDiInstallDriverFiles()
[all …]
H A Ddevclass.c741 SP_DEVINSTALL_PARAMS_W InstallParams; in SetupDiInstallClassExW() local
751 InstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS); in SetupDiInstallClassExW()
752 if (!SetupDiGetDeviceInstallParamsW(hDeviceInfo, NULL, &InstallParams)) in SetupDiInstallClassExW()
755 InstallParams.Flags &= ~(DI_NOVCP | DI_NOBROWSE | DI_QUIETINSTALL); in SetupDiInstallClassExW()
756 InstallParams.Flags |= Flags & (DI_NOVCP | DI_NOBROWSE | DI_QUIETINSTALL); in SetupDiInstallClassExW()
758 InstallParams.FileQueue = FileQueue; in SetupDiInstallClassExW()
759 if (!SetupDiSetDeviceInstallParamsW(hDeviceInfo, NULL, &InstallParams)) in SetupDiInstallClassExW()
1000 SP_DEVINSTALL_PARAMS_W InstallParams; in SetupDiSetClassInstallParamsW() local
1003 InstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS_W); in SetupDiSetClassInstallParamsW()
1023 InstallParams.Flags |= DI_CLASSINSTALLPARAMS; in SetupDiSetClassInstallParamsW()
[all …]
H A Ddevinst.c1306 list->InstallParams.Flags |= DI_CLASSINSTALLPARAMS; in SetupDiCreateDeviceInfoListExW()
1307 list->InstallParams.hwndParent = hwndParent; in SetupDiCreateDeviceInfoListExW()
4045 SP_DEVINSTALL_PARAMS_W InstallParams; in SetupDiCallClassInstaller() local
4478 Source = &list->InstallParams; in SetupDiGetDeviceInstallParamsW()
4585 Destination = &list->InstallParams; in SetupDiSetDeviceInstallParamsW()
5233 SP_DEVINSTALL_PARAMS_W InstallParams; in SetupDiRegisterCoDeviceInstallers() local
5282 if (!(InstallParams.Flags & DI_NOFILECOPY)) in SetupDiRegisterCoDeviceInstallers()
5371 SP_DEVINSTALL_PARAMS_W InstallParams; in SetupDiInstallDevice() local
5411 InstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS_W); in SetupDiInstallDevice()
5535 if (!(InstallParams.Flags & DI_NOFILECOPY)) in SetupDiInstallDevice()
[all …]
H A Dsetupapi_private.h139 SP_DEVINSTALL_PARAMS_W InstallParams; member
201 SP_DEVINSTALL_PARAMS_W InstallParams; member
H A Dinterface.c439 SP_DEVINSTALL_PARAMS_W InstallParams; in SetupDiInstallDeviceInterfaces() local
452 InstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS_W); in SetupDiInstallDeviceInterfaces()
453 Result = SetupDiGetDeviceInstallParamsW(DeviceInfoSet, DeviceInfoData, &InstallParams); in SetupDiInstallDeviceInterfaces()
457 SelectedDriver = (struct DriverInfoElement *)InstallParams.ClassInstallReserved; in SetupDiInstallDeviceInterfaces()
/reactos/dll/cpl/desk/
H A Dclassinst.c21 SP_DEVINSTALL_PARAMS InstallParams; in DisplayClassInstaller() local
44 InstallParams.cbSize = sizeof(InstallParams); in DisplayClassInstaller()
45 result = SetupDiGetDeviceInstallParams(DeviceInfoSet, DeviceInfoData, &InstallParams); in DisplayClassInstaller()
53 InstallParams.Flags |= DI_DONOTCALLCONFIGMG; in DisplayClassInstaller()
55 result = SetupDiSetDeviceInstallParams(DeviceInfoSet, DeviceInfoData, &InstallParams); in DisplayClassInstaller()
149 InstallParams.hwndParent, hInf, SectionName, in DisplayClassInstaller()
222 InstallParams.hwndParent, hInf, SectionName, in DisplayClassInstaller()
/reactos/dll/win32/devmgr/properties/
H A Dmisc.cpp929 SP_DEVINSTALL_PARAMS InstallParams = {0}; in FindCurrentDriver() local
950 InstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS); in FindCurrentDriver()
953 &InstallParams)) in FindCurrentDriver()
960 InstallParams.FlagsEx |= (DI_FLAGSEX_INSTALLEDDRIVER | DI_FLAGSEX_ALLOWEXCLUDEDDRVS); in FindCurrentDriver()
963 &InstallParams)) in FindCurrentDriver()
979 InstallParams.FlagsEx &= ~(DI_FLAGSEX_INSTALLEDDRIVER | DI_FLAGSEX_ALLOWEXCLUDEDDRVS); in FindCurrentDriver()
1018 InstallParams.Flags |= DI_ENUMSINGLEINF; in FindCurrentDriver()
1019 InstallParams.FlagsEx |= DI_FLAGSEX_ALLOWEXCLUDEDDRVS; in FindCurrentDriver()
1020 wcscpy(InstallParams.DriverPath, InfPath); in FindCurrentDriver()
1023 &InstallParams)) in FindCurrentDriver()
H A Dadvprop.cpp2184 SP_DEVINSTALL_PARAMS_W InstallParams; in UpdateDevInfo() local
2313 InstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS_W); in UpdateDevInfo()
2316 &InstallParams)) in UpdateDevInfo()
2319 InstallParams.Flags = 0; in UpdateDevInfo()
2320 InstallParams.FlagsEx = 0; in UpdateDevInfo()
2323 dap->HasDriverPage = !(InstallParams.Flags & DI_DRIVERPAGE_ADDED); in UpdateDevInfo()
2324 dap->HasResourcePage = !(InstallParams.Flags & DI_RESOURCEPAGE_ADDED); in UpdateDevInfo()
2325 dap->HasPowerPage = !(InstallParams.FlagsEx & DI_FLAGSEX_POWERPAGE_ADDED); in UpdateDevInfo()
/reactos/dll/win32/netcfgx/
H A Dpropertypage.c747 SP_DEVINSTALL_PARAMS_W InstallParams; in WriteParameterArray() local
797 InstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS_W); in WriteParameterArray()
800 &InstallParams)) in WriteParameterArray()
802 InstallParams.FlagsEx |= DI_FLAGSEX_PROPCHANGE_PENDING; in WriteParameterArray()
806 &InstallParams); in WriteParameterArray()