advpack: Use the default queue callback when calling SetupInstallFromInfSection.
This commit is contained in:
parent
ab68238af7
commit
b70d65b227
|
@ -87,7 +87,8 @@ static HRESULT spapi_install(HINF hinf, LPCWSTR install_sec, LPCWSTR source_path
|
||||||
|
|
||||||
ret = SetupInstallFromInfSectionW(NULL, hinf, install_sec, SPINST_FILES,
|
ret = SetupInstallFromInfSectionW(NULL, hinf, install_sec, SPINST_FILES,
|
||||||
NULL, source_path, SP_COPY_NEWER,
|
NULL, source_path, SP_COPY_NEWER,
|
||||||
NULL, context, NULL, NULL);
|
SetupDefaultQueueCallbackW,
|
||||||
|
context, NULL, NULL);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
{
|
{
|
||||||
res = ADV_HRESULT(GetLastError());
|
res = ADV_HRESULT(GetLastError());
|
||||||
|
|
Loading…
Reference in New Issue