mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[NETCFGX] Notify the installer of changes to the properties
This commit is contained in:
parent
b41299470b
commit
2c6cba1fc8
1 changed files with 14 additions and 0 deletions
|
@ -746,6 +746,7 @@ WriteParameterArray(
|
|||
_In_ HWND hwnd,
|
||||
_In_ PPARAMETER_ARRAY ParamArray)
|
||||
{
|
||||
SP_DEVINSTALL_PARAMS_W InstallParams;
|
||||
PPARAMETER Param;
|
||||
HKEY hDriverKey;
|
||||
INT i;
|
||||
|
@ -793,6 +794,19 @@ WriteParameterArray(
|
|||
}
|
||||
|
||||
RegCloseKey(hDriverKey);
|
||||
|
||||
/* Notify the installer of changes to the properties */
|
||||
InstallParams.cbSize = sizeof(SP_DEVINSTALL_PARAMS_W);
|
||||
if (SetupDiGetDeviceInstallParamsW(ParamArray->DeviceInfoSet,
|
||||
ParamArray->DeviceInfoData,
|
||||
&InstallParams))
|
||||
{
|
||||
InstallParams.FlagsEx |= DI_FLAGSEX_PROPCHANGE_PENDING;
|
||||
|
||||
SetupDiSetDeviceInstallParamsW(ParamArray->DeviceInfoSet,
|
||||
ParamArray->DeviceInfoData,
|
||||
&InstallParams);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue