Commit a64861fb authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

user32: Return success in nulldrv cursor callbacks.

parent e2cc1213
......@@ -249,17 +249,17 @@ static void CDECL nulldrv_SetCursor( HCURSOR cursor )
static BOOL CDECL nulldrv_GetCursorPos( LPPOINT pt )
{
return FALSE;
return TRUE;
}
static BOOL CDECL nulldrv_SetCursorPos( INT x, INT y )
{
return FALSE;
return TRUE;
}
static BOOL CDECL nulldrv_ClipCursor( LPCRECT clip )
{
return FALSE;
return TRUE;
}
static void CDECL nulldrv_UpdateClipboard(void)
......
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