20 Nov
2024
20 Nov
'24
12:46 p.m.
Hans Leidekker (@hans) commented about dlls/msi/package.c:
return ERROR_SUCCESS; }
+static BOOLEAN validate_package_platform( enum platform platform ) +{ + USHORT proc_machine, native_machine; + IsWow64Process2( GetCurrentProcess(), &proc_machine, &native_machine ); + switch (platform) + { + case PLATFORM_UNRECOGNIZED: + return TRUE;
PLATFORM_UNRECOGNIZED is handled already so this won't be reached. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6838#note_88146