Commit d5b0232b authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

stress.dll16: Use BOOL type where appropriate.

parent 7377aa16
...@@ -54,8 +54,7 @@ INT16 WINAPI AllocFileHandles(INT16 Left) ...@@ -54,8 +54,7 @@ INT16 WINAPI AllocFileHandles(INT16 Left)
BOOL16 WINAPI AllocGDIMem(UINT16 uLeft) BOOL16 WINAPI AllocGDIMem(UINT16 uLeft)
{ {
TRACE("(%d) - stub\n", uLeft); TRACE("(%d) - stub\n", uLeft);
return TRUE;
return 1;
} }
/*********************************************************************** /***********************************************************************
...@@ -64,8 +63,7 @@ BOOL16 WINAPI AllocGDIMem(UINT16 uLeft) ...@@ -64,8 +63,7 @@ BOOL16 WINAPI AllocGDIMem(UINT16 uLeft)
BOOL16 WINAPI AllocMem(DWORD dwLeft) BOOL16 WINAPI AllocMem(DWORD dwLeft)
{ {
FIXME("(%d) - stub\n", dwLeft); FIXME("(%d) - stub\n", dwLeft);
return TRUE;
return 1;
} }
/*********************************************************************** /***********************************************************************
...@@ -74,8 +72,7 @@ BOOL16 WINAPI AllocMem(DWORD dwLeft) ...@@ -74,8 +72,7 @@ BOOL16 WINAPI AllocMem(DWORD dwLeft)
BOOL16 WINAPI AllocUserMem(UINT16 uContig) BOOL16 WINAPI AllocUserMem(UINT16 uContig)
{ {
TRACE("AllocUserMem %d\n", uContig); TRACE("AllocUserMem %d\n", uContig);
return TRUE;
return 1;
} }
/*********************************************************************** /***********************************************************************
......
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