Add stub implementation for SetICMProfileA().
This commit is contained in:
parent
d240ae8d62
commit
8677fbf362
@ -362,7 +362,7 @@
|
|||||||
@ stub SetFontEnumeration
|
@ stub SetFontEnumeration
|
||||||
@ stdcall SetGraphicsMode(long long)
|
@ stdcall SetGraphicsMode(long long)
|
||||||
@ stdcall SetICMMode(long long)
|
@ stdcall SetICMMode(long long)
|
||||||
@ stub SetICMProfileA
|
@ stdcall SetICMProfileA (long ptr)
|
||||||
@ stub SetICMProfileW
|
@ stub SetICMProfileW
|
||||||
@ stdcall SetLayout(long long)
|
@ stdcall SetLayout(long long)
|
||||||
@ stub SetMagicColors
|
@ stub SetMagicColors
|
||||||
|
@ -924,3 +924,13 @@ BOOL WINAPI GetICMProfileA(HDC hDC, LPDWORD lpcbName, LPSTR lpszFilename)
|
|||||||
strcpy(lpszFilename, WINEICM);
|
strcpy(lpszFilename, WINEICM);
|
||||||
return TRUE;
|
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…
x
Reference in New Issue
Block a user