Commit 63e241ab authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

Stub implementations for GetLogColorSpace{A,W}.

parent f4a5ba1f
......@@ -232,8 +232,8 @@
@ stdcall GetKerningPairsA(long long ptr)
@ stdcall GetKerningPairsW(long long ptr)
@ stdcall GetLayout(long)
@ stub GetLogColorSpaceA
@ stub GetLogColorSpaceW
@ stdcall GetLogColorSpaceA(long ptr long)
@ stdcall GetLogColorSpaceW(long ptr long)
@ stdcall GetMapMode(long)
@ stdcall GetMetaFileA(str)
@ stdcall GetMetaFileBitsEx(long long ptr)
......
......@@ -985,6 +985,26 @@ BOOL WINAPI GetICMProfileW(HDC hDC, LPDWORD lpcbName, LPWSTR lpszFilename)
}
/**********************************************************************
* GetLogColorSpaceA [GDI32.@]
*
*/
BOOL WINAPI GetLogColorSpaceA(HCOLORSPACE hColorSpace, LPLOGCOLORSPACEA lpBuffer, DWORD nSize)
{
FIXME("%p %p 0x%08lx: stub!\n", hColorSpace, lpBuffer, nSize);
return FALSE;
}
/**********************************************************************
* GetLogColorSpaceW [GDI32.@]
*
*/
BOOL WINAPI GetLogColorSpaceW(HCOLORSPACE hColorSpace, LPLOGCOLORSPACEW lpBuffer, DWORD nSize)
{
FIXME("%p %p 0x%08lx: stub!\n", hColorSpace, lpBuffer, nSize);
return FALSE;
}
/**********************************************************************
* SetICMProfileA [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