uninstaller: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-02-07 08:40:13 +01:00 committed by Alexandre Julliard
parent 86476f1c3c
commit bae8ef750a
2 changed files with 4 additions and 5 deletions

View file

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = uninstaller.exe MODULE = uninstaller.exe
IMPORTS = advapi32 IMPORTS = advapi32
DELAYIMPORTS = shlwapi shell32 user32 gdi32 comctl32 DELAYIMPORTS = shlwapi shell32 user32 gdi32 comctl32

View file

@ -79,7 +79,7 @@ static void output_formatstring(const WCHAR *fmt, va_list va_args)
fmt, 0, 0, (LPWSTR)&str, 0, &va_args); fmt, 0, 0, (LPWSTR)&str, 0, &va_args);
if (len == 0 && GetLastError() != ERROR_NO_WORK_DONE) if (len == 0 && GetLastError() != ERROR_NO_WORK_DONE)
{ {
WINE_FIXME("Could not format string: le=%u, fmt=%s\n", GetLastError(), wine_dbgstr_w(fmt)); WINE_FIXME("Could not format string: le=%lu, fmt=%s\n", GetLastError(), wine_dbgstr_w(fmt));
return; return;
} }
output_writeconsole(str, len); output_writeconsole(str, len);
@ -93,7 +93,7 @@ static void WINAPIV output_message(unsigned int id, ...)
if (!LoadStringW(GetModuleHandleW(NULL), id, fmt, ARRAY_SIZE(fmt))) if (!LoadStringW(GetModuleHandleW(NULL), id, fmt, ARRAY_SIZE(fmt)))
{ {
WINE_FIXME("LoadString failed with %d\n", GetLastError()); WINE_FIXME("LoadString failed with %ld\n", GetLastError());
return; return;
} }
va_start(va_args, id); va_start(va_args, id);
@ -173,7 +173,7 @@ int __cdecl wmain(int argc, WCHAR *argv[])
GetExitCodeProcess( pi.hProcess, &exit_code ); GetExitCodeProcess( pi.hProcess, &exit_code );
ExitProcess( exit_code ); ExitProcess( exit_code );
} }
else WINE_ERR( "failed to restart 64-bit %s, err %d\n", wine_dbgstr_w(filename), GetLastError() ); else WINE_ERR( "failed to restart 64-bit %s, err %ld\n", wine_dbgstr_w(filename), GetLastError() );
Wow64RevertWow64FsRedirection( redir ); Wow64RevertWow64FsRedirection( redir );
} }
@ -347,7 +347,7 @@ static void UninstallProgram(void)
{ /* wait for the process to exit */ { /* wait for the process to exit */
WaitForSingleObject(info.hProcess, INFINITE); WaitForSingleObject(info.hProcess, INFINITE);
res = GetExitCodeProcess(info.hProcess, &exit_code); res = GetExitCodeProcess(info.hProcess, &exit_code);
WINE_TRACE("%d: %08x\n", res, exit_code); WINE_TRACE("%d: %08lx\n", res, exit_code);
} }
else else
{ {