Module: wine Branch: master Commit: c7375748016049c7312d53617e22b72e940e18bb URL: https://gitlab.winehq.org/wine/wine/-/commit/c7375748016049c7312d53617e22b72...
Author: Etaash Mathamsetty etaash.mathamsetty@gmail.com Date: Tue Apr 23 18:55:23 2024 -0400
user32: Fake success from UnregisterTouchWindow.
---
dlls/user32/input.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dlls/user32/input.c b/dlls/user32/input.c index c1c20ad8a84..108592f018f 100644 --- a/dlls/user32/input.c +++ b/dlls/user32/input.c @@ -732,8 +732,7 @@ BOOL WINAPI RegisterTouchWindow( HWND hwnd, ULONG flags ) BOOL WINAPI UnregisterTouchWindow( HWND hwnd ) { FIXME( "hwnd %p stub!\n", hwnd ); - SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); - return FALSE; + return TRUE; }
/*****************************************************************************