Commit 077b5942 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

msnet32: Enable compilation with long types.

parent 0c34b472
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = msnet32.dll
EXTRADLLFLAGS = -Wb,--prefer-native
......
......@@ -33,6 +33,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(msnet);
*/
LONG WINAPI MSNET32_57( LONG a1, LONG a2, LPVOID a3, LONG a4, LPVOID a5 )
{
FIXME("(0x%04x 0x%04x %p 0x%04x %p): stub\n", a1, a2, a3, a4, a5);
FIXME("(0x%04lx 0x%04lx %p 0x%04lx %p): stub\n", a1, a2, a3, a4, a5);
return -1; /* FAILURE */
}
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