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

user.exe16: Use BOOL type where appropriate.

parent 13b9fee8
...@@ -560,11 +560,11 @@ BOOL16 WINAPI ClipCursor16( const RECT16 *rect ) ...@@ -560,11 +560,11 @@ BOOL16 WINAPI ClipCursor16( const RECT16 *rect )
BOOL16 WINAPI GetCursorPos16( POINT16 *pt ) BOOL16 WINAPI GetCursorPos16( POINT16 *pt )
{ {
POINT pos; POINT pos;
if (!pt) return 0; if (!pt) return FALSE;
GetCursorPos(&pos); GetCursorPos(&pos);
pt->x = pos.x; pt->x = pos.x;
pt->y = pos.y; pt->y = pos.y;
return 1; 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