[WINESYNC] setupapi: Create fake dlls before performing dll registration.

wine commit id 4ae262df8efbcf4cd2e213a1899801c09d6b5047 by Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
winesync 2024-01-03 20:59:10 +01:00 committed by Hermès Bélusca-Maïto
parent 076b4ec9ad
commit 41039c3daf
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
2 changed files with 5 additions and 5 deletions

View file

@ -1405,13 +1405,13 @@ BOOL WINAPI SetupInstallFromInfSectionW( HWND owner, HINF hinf, PCWSTR section,
}
else info.callback = NULL;
if (!iterate_section_fields( hinf, section, RegisterDlls, register_dlls_callback, &info ))
return FALSE;
#ifdef __WINESRC__
if (!iterate_section_fields( hinf, section, WineFakeDlls, fake_dlls_callback, NULL ))
return FALSE;
#endif // __WINESRC__
#endif
if (!iterate_section_fields( hinf, section, RegisterDlls, register_dlls_callback, &info ))
return FALSE;
}
if (flags & SPINST_UNREGSVR)
{

View file

@ -5,4 +5,4 @@ files:
dlls/setupapi/misc.c: dll/win32/setupapi/misc.c
dlls/setupapi/stubs.c: dll/win32/setupapi/stubs.c
tags:
wine: 11d66a87887d6155850c1f5f0c889bfefe6add87
wine: 4ae262df8efbcf4cd2e213a1899801c09d6b5047