stress.dll16: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-11-24 00:05:12 +01:00 committed by Alexandre Julliard
parent 7377aa1683
commit d5b0232b04
1 changed files with 3 additions and 6 deletions

View File

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