Commit 8677fbf3 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

Add stub implementation for SetICMProfileA().

parent d240ae8d
......@@ -362,7 +362,7 @@
@ stub SetFontEnumeration
@ stdcall SetGraphicsMode(long long)
@ stdcall SetICMMode(long long)
@ stub SetICMProfileA
@ stdcall SetICMProfileA (long ptr)
@ stub SetICMProfileW
@ stdcall SetLayout(long long)
@ stub SetMagicColors
......
......@@ -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 */
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment