rtutils: 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-17 07:12:09 +01:00 committed by Alexandre Julliard
parent f0849f7dbc
commit 6714a290de
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = rtutils.dll
IMPORTLIB = rtutils

View File

@ -38,7 +38,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(rtutils);
*/
DWORD WINAPI TraceRegisterExW(LPCWSTR name, DWORD flags)
{
FIXME("(%s, %x): stub\n", debugstr_w(name), flags);
FIXME("(%s, %lx): stub\n", debugstr_w(name), flags);
return INVALID_TRACEID;
}