Commit 466633c7 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

Add stub implementation for SetMagicColors().

parent 69b54d4e
...@@ -443,7 +443,7 @@ ...@@ -443,7 +443,7 @@
@ stdcall SetICMProfileW(long wstr) @ stdcall SetICMProfileW(long wstr)
@ stdcall SetLayout(long long) @ stdcall SetLayout(long long)
# @ stub SetLayoutWidth # @ stub SetLayoutWidth
@ stub SetMagicColors @ stdcall SetMagicColors(ptr long long)
@ stdcall SetMapMode(long long) @ stdcall SetMapMode(long long)
@ stdcall SetMapperFlags(long long) @ stdcall SetMapperFlags(long long)
@ stdcall SetMetaFileBitsEx(long ptr) @ stdcall SetMetaFileBitsEx(long ptr)
......
...@@ -908,6 +908,15 @@ VOID WINAPI SetMagicColors16(HDC16 hDC, COLORREF color, UINT16 index) ...@@ -908,6 +908,15 @@ VOID WINAPI SetMagicColors16(HDC16 hDC, COLORREF color, UINT16 index)
} }
/*********************************************************************
* SetMagicColors (GDI.@)
*/
BOOL WINAPI SetMagicColors(HDC hdc, ULONG u1, ULONG u2)
{
FIXME("(%p 0x%08lx 0x%08lx): stub\n", hdc, u1, u2);
return TRUE;
}
/********************************************************************** /**********************************************************************
* GetICMProfileA [GDI32.@] * GetICMProfileA [GDI32.@]
* *
......
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