user32: Return success in nulldrv cursor callbacks.

Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Rémi Bernon 2021-05-06 12:03:16 +02:00 committed by Alexandre Julliard
parent e2cc121327
commit a64861fb66
1 changed files with 3 additions and 3 deletions

View File

@ -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)