Commit b3a193a5 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

gdi32: Add GdiInitializeLanguagePack() stub.

parent b109c5c6
......@@ -193,7 +193,7 @@
@ stdcall GdiGetSpoolMessage(ptr long ptr long)
@ stdcall GdiGradientFill(long ptr long ptr long long)
@ stdcall GdiInitSpool()
# @ stub GdiInitializeLanguagePack
@ stdcall GdiInitializeLanguagePack(long)
@ stdcall GdiIsMetaFileDC(long)
@ stdcall GdiIsMetaPrintDC(long)
@ stdcall GdiIsPlayMetafileDC(long)
......
......@@ -1164,6 +1164,14 @@ void WINAPI SetObjectOwner( HGDIOBJ handle, HANDLE owner )
/* Nothing to do */
}
/***********************************************************************
* GdiInitializeLanguagePack (GDI32.@)
*/
DWORD WINAPI GdiInitializeLanguagePack( DWORD arg )
{
FIXME("stub\n");
return 0;
}
/***********************************************************************
* GdiFlush (GDI32.@)
......@@ -1199,7 +1207,7 @@ DWORD WINAPI GdiSetBatchLimit( DWORD limit )
*/
BOOL WINAPI GetColorAdjustment(HDC hdc, LPCOLORADJUSTMENT lpca)
{
FIXME("GetColorAdjustment, stub\n");
FIXME("stub\n");
return 0;
}
......@@ -1228,6 +1236,6 @@ BOOL WINAPI GdiComment(HDC hdc, UINT cbSize, const BYTE *lpData)
*/
BOOL WINAPI SetColorAdjustment(HDC hdc, const COLORADJUSTMENT* lpca)
{
FIXME("SetColorAdjustment, stub\n");
FIXME("stub\n");
return 0;
}
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