From: Mohamad Al-Jaf mohamadaljaf@gmail.com
Needed by ProSelect. --- dlls/icmui/Makefile.in | 3 +++ dlls/icmui/icmui.c | 31 +++++++++++++++++++++++++++++++ dlls/icmui/icmui.spec | 2 +- 3 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 dlls/icmui/icmui.c
diff --git a/dlls/icmui/Makefile.in b/dlls/icmui/Makefile.in index a8814fd2439..f61d4f70788 100644 --- a/dlls/icmui/Makefile.in +++ b/dlls/icmui/Makefile.in @@ -1 +1,4 @@ MODULE = icmui.dll + +SOURCES = \ + icmui.c diff --git a/dlls/icmui/icmui.c b/dlls/icmui/icmui.c new file mode 100644 index 00000000000..2572844cca7 --- /dev/null +++ b/dlls/icmui/icmui.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_INVALID_PARAMETER ); + return FALSE; +} diff --git a/dlls/icmui/icmui.spec b/dlls/icmui/icmui.spec index 9a03db4d788..1004457db97 100644 --- a/dlls/icmui/icmui.spec +++ b/dlls/icmui/icmui.spec @@ -1,2 +1,2 @@ @ stub SetupColorMatchingA -@ stub SetupColorMatchingW +@ stdcall SetupColorMatchingW(ptr)