Commit 6714a290 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

rtutils: Enable compilation with long types.

parent f0849f7d
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = rtutils.dll MODULE = rtutils.dll
IMPORTLIB = rtutils IMPORTLIB = rtutils
......
...@@ -38,7 +38,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(rtutils); ...@@ -38,7 +38,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(rtutils);
*/ */
DWORD WINAPI TraceRegisterExW(LPCWSTR name, DWORD flags) 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; return INVALID_TRACEID;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment