gdi32: Add GdiInitializeLanguagePack() stub.

This commit is contained in:
Nikolay Sivov 2010-01-26 00:01:04 +03:00 committed by Alexandre Julliard
parent b109c5c680
commit b3a193a5dd
2 changed files with 11 additions and 3 deletions

View File

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

View File

@ -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;
}