Commit 56f0485d authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

traffic: Enable compilation with long types.

parent 66b171d2
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = traffic.dll
EXTRADLLFLAGS = -Wb,--prefer-native
......
......@@ -32,7 +32,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(traffic);
ULONG WINAPI TcRegisterClient(ULONG version, HANDLE context,
PTCI_CLIENT_FUNC_LIST list, PHANDLE buffer)
{
FIXME("(%u %p %p %p) stub\n", version, context, list, buffer);
FIXME("(%lu %p %p %p) stub\n", version, context, list, buffer);
if(buffer) *buffer = INVALID_HANDLE_VALUE;
return ERROR_CALL_NOT_IMPLEMENTED;
}
......
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