Stub implementations for GetLogColorSpace{A,W}.

This commit is contained in:
Hans Leidekker 2005-01-03 14:33:07 +00:00 committed by Alexandre Julliard
parent f4a5ba1f6b
commit 63e241ab95
2 changed files with 22 additions and 2 deletions

View File

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

View File

@ -984,6 +984,26 @@ BOOL WINAPI GetICMProfileW(HDC hDC, LPDWORD lpcbName, LPWSTR lpszFilename)
return TRUE;
}
/**********************************************************************
* 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.@]
*