winetest: 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:41:13 +01:00 committed by Alexandre Julliard
parent 69a9931a82
commit d34b3021b3
2 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = winetest.exe
IMPORTS = uuid comctl32 version user32 gdi32 advapi32 wsock32 msvcrt
DELAYIMPORTS = ole32

View File

@ -124,7 +124,7 @@ static char * get_file_version(char * file_name)
VS_FIXEDFILEINFO *pFixedVersionInfo;
UINT len;
if (VerQueryValueA(data, backslash, (LPVOID *)&pFixedVersionInfo, &len)) {
sprintf(version, "%d.%d.%d.%d",
sprintf(version, "%ld.%ld.%ld.%ld",
pFixedVersionInfo->dwFileVersionMS >> 16,
pFixedVersionInfo->dwFileVersionMS & 0xffff,
pFixedVersionInfo->dwFileVersionLS >> 16,
@ -132,14 +132,14 @@ static char * get_file_version(char * file_name)
} else
sprintf(version, "version not found");
} else
sprintf(version, "version error %u", GetLastError());
sprintf(version, "version error %lu", GetLastError());
heap_free(data);
} else
sprintf(version, "version error %u", ERROR_OUTOFMEMORY);
} else if (GetLastError() == ERROR_FILE_NOT_FOUND)
sprintf(version, "dll is missing");
else
sprintf(version, "version not present %u", GetLastError());
sprintf(version, "version not present %lu", GetLastError());
return version;
}