Module: wine Branch: refs/heads/master Commit: b70d65b227f07784ba348690f973ed9fef8ef4e7 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=b70d65b227f07784ba348690... Author: James Hawkins <truiken(a)gmail.com> Date: Mon Apr 17 01:49:12 2006 -0500 advpack: Use the default queue callback when calling SetupInstallFromInfSection. --- dlls/advpack/install.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dlls/advpack/install.c b/dlls/advpack/install.c index ddb5f30..66073aa 100644 --- a/dlls/advpack/install.c +++ b/dlls/advpack/install.c @@ -87,7 +87,8 @@ static HRESULT spapi_install(HINF hinf, ret = SetupInstallFromInfSectionW(NULL, hinf, install_sec, SPINST_FILES, NULL, source_path, SP_COPY_NEWER, - NULL, context, NULL, NULL); + SetupDefaultQueueCallbackW, + context, NULL, NULL); if (!ret) { res = ADV_HRESULT(GetLastError());