Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57141 Signed-off-by: Gijs Vermeulen gijsvrm@gmail.com
From: Gijs Vermeulen gijsvrm@gmail.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57141 Signed-off-by: Gijs Vermeulen gijsvrm@gmail.com --- dlls/user32/input.c | 7 +++++++ dlls/user32/user32.spec | 1 + 2 files changed, 8 insertions(+)
diff --git a/dlls/user32/input.c b/dlls/user32/input.c index 108592f018f..b4ee52f3474 100644 --- a/dlls/user32/input.c +++ b/dlls/user32/input.c @@ -886,3 +886,10 @@ HWND WINAPI GetTaskmanWindow(void) { return NtUserGetTaskmanWindow(); } + +HSYNTHETICPOINTERDEVICE WINAPI CreateSyntheticPointerDevice(POINTER_INPUT_TYPE type, ULONG max_count, POINTER_FEEDBACK_MODE mode) +{ + FIXME( "type %ld, max_count %ld, mode %d stub!\n", type, max_count, mode); + SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); + return NULL; +} diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index 20ca6219bcd..47eab2c9693 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -104,6 +104,7 @@ @ stdcall CreateMDIWindowW(wstr wstr long long long long long long long long) @ stdcall CreateMenu() @ stdcall CreatePopupMenu() +@ stdcall CreateSyntheticPointerDevice(long long long) # @ stub CreateSystemThreads @ stdcall CreateWindowExA(long str str long long long long long long long long ptr) @ stdcall CreateWindowExW(long wstr wstr long long long long long long long long ptr)
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details:
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=148302
Your paranoid android.
=== debian11 (32 bit report) ===
user32: input.c:5858: Test failed: got pos (49,51)
=== debian11b (64 bit WoW report) ===
user32: input.c:4305: Test succeeded inside todo block: button_down_hwnd_todo 1: got MSG_TEST_WIN hwnd 0000000002BE00B4, msg WM_LBUTTONDOWN, wparam 0x1, lparam 0x320032
This merge request was approved by Rémi Bernon.