mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 06:45:24 +00:00
[ADVPACK] Sync with Wine Staging 1.7.55. CORE-10536
svn path=/trunk/; revision=69919
This commit is contained in:
parent
bdf39ac961
commit
316b248004
2 changed files with 6 additions and 2 deletions
|
@ -762,7 +762,11 @@ INT WINAPI LaunchINFSectionW(HWND hWnd, HINSTANCE hInst, LPWSTR cmdline, INT sho
|
|||
|
||||
str_flags = get_parameter(&cmdline_ptr, ',', TRUE);
|
||||
if (str_flags)
|
||||
flags = atolW(str_flags);
|
||||
{
|
||||
DWORD inf_flags = atolW(str_flags);
|
||||
if (inf_flags & LIS_QUIET) flags |= RSC_FLAG_QUIET;
|
||||
if (inf_flags & LIS_NOGRPCONV) flags |= RSC_FLAG_NGCONV;
|
||||
}
|
||||
|
||||
ZeroMemory(&info, sizeof(ADVInfo));
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ reactos/dll/directx/wine/wined3d # Synced to WineStaging-1.7.47
|
|||
|
||||
reactos/dll/win32/activeds # Synced to WineStaging-1.7.47
|
||||
reactos/dll/win32/actxprxy # Synced to WineStaging-1.7.47
|
||||
reactos/dll/win32/advpack # Synced to WineStaging-1.7.47
|
||||
reactos/dll/win32/advpack # Synced to WineStaging-1.7.55
|
||||
reactos/dll/win32/atl # Synced to WineStaging-1.7.47
|
||||
reactos/dll/win32/atl80 # Synced to WineStaging-1.7.47
|
||||
reactos/dll/win32/atl100 # Synced to WineStaging-1.7.47
|
||||
|
|
Loading…
Reference in a new issue