Commit 66b171d2 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

toolhelp.dll16: Enable compilation with long types.

parent f925d0d8
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = toolhelp.dll16 MODULE = toolhelp.dll16
EXTRADLLFLAGS = -m16 EXTRADLLFLAGS = -m16
......
...@@ -552,7 +552,7 @@ BOOL16 WINAPI NotifyRegister16( HTASK16 htask, FARPROC16 lpfnCallback, ...@@ -552,7 +552,7 @@ BOOL16 WINAPI NotifyRegister16( HTASK16 htask, FARPROC16 lpfnCallback,
{ {
int i; int i;
FIXME("(%x,%x,%x), semi-stub.\n", FIXME("(%x,%lx,%x), semi-stub.\n",
htask, (DWORD)lpfnCallback, wFlags ); htask, (DWORD)lpfnCallback, wFlags );
if (!htask) htask = GetCurrentTask(); if (!htask) htask = GetCurrentTask();
for (i=0;i<nrofnotifys;i++) for (i=0;i<nrofnotifys;i++)
......
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