Commit bd575863 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

stress.dll16: Enable compilation with long types.

parent fcfab4e5
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = stress.dll16 MODULE = stress.dll16
EXTRADLLFLAGS = -m16 EXTRADLLFLAGS = -m16
......
...@@ -29,7 +29,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(stress); ...@@ -29,7 +29,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(stress);
*/ */
INT16 WINAPI AllocDiskSpace(LONG lLeft, UINT16 uDrive) INT16 WINAPI AllocDiskSpace(LONG lLeft, UINT16 uDrive)
{ {
FIXME("(%d, %d) - stub\n", FIXME("(%d, %ld) - stub\n",
uDrive, lLeft); uDrive, lLeft);
return 1; return 1;
...@@ -62,7 +62,7 @@ BOOL16 WINAPI AllocGDIMem(UINT16 uLeft) ...@@ -62,7 +62,7 @@ BOOL16 WINAPI AllocGDIMem(UINT16 uLeft)
*/ */
BOOL16 WINAPI AllocMem(DWORD dwLeft) BOOL16 WINAPI AllocMem(DWORD dwLeft)
{ {
FIXME("(%d) - stub\n", dwLeft); FIXME("(%ld) - stub\n", dwLeft);
return TRUE; return TRUE;
} }
......
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