Add stub implementation for SetICMProfileA().
This commit is contained in:
parent
d240ae8d62
commit
8677fbf362
|
@ -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 */
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue