Etaash Mathamsetty : user32: Fake success from RegisterTouchWindow.
Module: wine Branch: master Commit: 6236c508074fc8aeea6584ba3fe0f7609b695610 URL: https://gitlab.winehq.org/wine/wine/-/commit/6236c508074fc8aeea6584ba3fe0f76... Author: Etaash Mathamsetty <etaash.mathamsetty(a)gmail.com> Date: Tue Apr 23 18:54:41 2024 -0400 user32: Fake success from RegisterTouchWindow. --- 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 00337aa72b7..c1c20ad8a84 100644 --- a/dlls/user32/input.c +++ b/dlls/user32/input.c @@ -723,8 +723,7 @@ BOOL WINAPI IsTouchWindow( HWND hwnd, ULONG *flags ) BOOL WINAPI RegisterTouchWindow( HWND hwnd, ULONG flags ) { FIXME( "hwnd %p, flags %#lx stub!\n", hwnd, flags ); - SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); - return FALSE; + return TRUE; } /*****************************************************************************
participants (1)
-
Alexandre Julliard