Add stub implementation for SetICMProfileA().

This commit is contained in:
Rein Klazes 2004-02-20 01:08:16 +00:00 committed by Alexandre Julliard
parent d240ae8d62
commit 8677fbf362
2 changed files with 11 additions and 1 deletions

View File

@ -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

View 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 */
}