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; +}