commit 3aa9654d24d203123d49bf88b25931f7ceda55b9 Author: Peter Urbanec Date: Wed Jan 7 10:32:11 2009 +1100 wintab32: Change return value to FALSE for functions that return BOOL. diff --git a/dlls/wintab32/context.c b/dlls/wintab32/context.c index b2a9c98..5337734 100644 --- a/dlls/wintab32/context.c +++ b/dlls/wintab32/context.c @@ -656,7 +656,7 @@ BOOL WINAPI WTEnable(HCTX hCtx, BOOL fEnable) if (!context) { LeaveCriticalSection(&csTablet); - return 0; + return FALSE; } /* if we want to enable and it is not enabled then */ @@ -762,7 +762,7 @@ BOOL WINAPI WTGetA(HCTX hCtx, LPLOGCONTEXTA lpLogCtx) if (!context) { LeaveCriticalSection(&csTablet); - return 0; + return FALSE; } LOGCONTEXTWtoA(&context->context, lpLogCtx); @@ -787,7 +787,7 @@ BOOL WINAPI WTGetW(HCTX hCtx, LPLOGCONTEXTW lpLogCtx) if (!context) { LeaveCriticalSection(&csTablet); - return 0; + return FALSE; } memmove(lpLogCtx,&context->context,sizeof(LOGCONTEXTW)); @@ -1110,7 +1110,7 @@ BOOL WINAPI WTQueueSizeSet(HCTX hCtx, int nPkts) if (!context) { LeaveCriticalSection(&csTablet); - return 0; + return FALSE; } context->PacketQueue = HeapReAlloc(GetProcessHeap(), 0,