Needed by ProSelect.
From: Mohamad Al-Jaf mohamadaljaf@gmail.com
Needed by ProSelect. --- configure.ac | 1 + dlls/icmui/Makefile.in | 4 ++++ dlls/icmui/icmui.spec | 2 ++ dlls/icmui/main.c | 31 +++++++++++++++++++++++++++++++ 4 files changed, 38 insertions(+) create mode 100644 dlls/icmui/Makefile.in create mode 100644 dlls/icmui/icmui.spec create mode 100644 dlls/icmui/main.c
diff --git a/configure.ac b/configure.ac index 94260d7ae7b..bc0030cf688 100644 --- a/configure.ac +++ b/configure.ac @@ -2703,6 +2703,7 @@ WINE_CONFIG_MAKEFILE(dlls/hvsimanagementapi/tests) WINE_CONFIG_MAKEFILE(dlls/ia2comproxy) WINE_CONFIG_MAKEFILE(dlls/iccvid) WINE_CONFIG_MAKEFILE(dlls/icmp) +WINE_CONFIG_MAKEFILE(dlls/icmui) WINE_CONFIG_MAKEFILE(dlls/ieframe) WINE_CONFIG_MAKEFILE(dlls/ieframe/tests) WINE_CONFIG_MAKEFILE(dlls/ieproxy) diff --git a/dlls/icmui/Makefile.in b/dlls/icmui/Makefile.in new file mode 100644 index 00000000000..080c329eb8a --- /dev/null +++ b/dlls/icmui/Makefile.in @@ -0,0 +1,4 @@ +MODULE = icmui.dll + +SOURCES = \ + main.c diff --git a/dlls/icmui/icmui.spec b/dlls/icmui/icmui.spec new file mode 100644 index 00000000000..1004457db97 --- /dev/null +++ b/dlls/icmui/icmui.spec @@ -0,0 +1,2 @@ +@ stub SetupColorMatchingA +@ stdcall SetupColorMatchingW(ptr) diff --git a/dlls/icmui/main.c b/dlls/icmui/main.c new file mode 100644 index 00000000000..eec2bae193c --- /dev/null +++ b/dlls/icmui/main.c @@ -0,0 +1,31 @@ +/* + * Copyright (C) 2024 Mohamad Al-Jaf + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "wine/debug.h" +#include "wingdi.h" +#include "winuser.h" +#include "icm.h" + +WINE_DEFAULT_DEBUG_CHANNEL(icmui); + +BOOL WINAPI SetupColorMatchingW( COLORMATCHSETUPW *cms ) +{ + FIXME( "cms %p - stub!\n", cms ); + SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); + return FALSE; +}
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=149720
Your paranoid android.
=== debian11b (64 bit WoW report) ===
user32: input.c:4305: Test succeeded inside todo block: button_down_hwnd_todo 1: got MSG_TEST_WIN hwnd 00000000020100DE, msg WM_LBUTTONDOWN, wparam 0x1, lparam 0x320032 win.c:4073: Test succeeded inside todo block: Expected active window 0000000001ED0150, got 0000000001ED0150. win.c:4074: Test succeeded inside todo block: Expected focus window 0000000001ED0150, got 0000000001ED0150.