Add stub implementation for SetICMProfileA().
authorRein Klazes <rklazes@xs4all.nl>
Fri, 20 Feb 2004 01:08:16 +0000 (01:08 +0000)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 20 Feb 2004 01:08:16 +0000 (01:08 +0000)
dlls/gdi/gdi32.spec
objects/palette.c

index 54ae23bcc73f1313ca3a6dd9890cdaf7a11c80a4..d3822cfb9e857fb2ab9e643f6dc4cb4c1c3813c5 100644 (file)
 @ stub SetFontEnumeration
 @ stdcall SetGraphicsMode(long long)
 @ stdcall SetICMMode(long long)
-@ stub SetICMProfileA
+@ stdcall SetICMProfileA (long ptr)
 @ stub SetICMProfileW
 @ stdcall SetLayout(long long)
 @ stub SetMagicColors
index 358719f4734f09396e57c4c7ed58d6f7ca4ba072..dfca7611ea8a24f934e0c90a1a6a755599945779 100644 (file)
@@ -924,3 +924,13 @@ BOOL WINAPI GetICMProfileA(HDC hDC, LPDWORD lpcbName, LPSTR lpszFilename)
     strcpy(lpszFilename, WINEICM);
     return TRUE;
 }
+
+/**********************************************************************
+ * SetICMProfileA [GDI32.@]
+ *
+ */
+BOOL WINAPI SetICMProfileA(HDC hDC, LPSTR lpszFilename)
+{
+    FIXME("hDC %p filename '%s': stub!\n", hDC, debugstr_a(lpszFilename));
+    return TRUE; /* success */
+}