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:
parent
86476f1c3c
commit
bae8ef750a
|
@ -1,4 +1,3 @@
|
|||
EXTRADEFS = -DWINE_NO_LONG_TYPES
|
||||
MODULE = uninstaller.exe
|
||||
IMPORTS = advapi32
|
||||
DELAYIMPORTS = shlwapi shell32 user32 gdi32 comctl32
|
||||
|
|
|
@ -79,7 +79,7 @@ static void output_formatstring(const WCHAR *fmt, va_list va_args)
|
|||
fmt, 0, 0, (LPWSTR)&str, 0, &va_args);
|
||||
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;
|
||||
}
|
||||
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)))
|
||||
{
|
||||
WINE_FIXME("LoadString failed with %d\n", GetLastError());
|
||||
WINE_FIXME("LoadString failed with %ld\n", GetLastError());
|
||||
return;
|
||||
}
|
||||
va_start(va_args, id);
|
||||
|
@ -173,7 +173,7 @@ int __cdecl wmain(int argc, WCHAR *argv[])
|
|||
GetExitCodeProcess( pi.hProcess, &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 );
|
||||
}
|
||||
|
||||
|
@ -347,7 +347,7 @@ static void UninstallProgram(void)
|
|||
{ /* wait for the process to exit */
|
||||
WaitForSingleObject(info.hProcess, INFINITE);
|
||||
res = GetExitCodeProcess(info.hProcess, &exit_code);
|
||||
WINE_TRACE("%d: %08x\n", res, exit_code);
|
||||
WINE_TRACE("%d: %08lx\n", res, exit_code);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue