mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
- Update Gdi GetFontLanguageInfo.
svn path=/trunk/; revision=37092
This commit is contained in:
parent
693488f7ff
commit
f5883c94d4
2 changed files with 12 additions and 15 deletions
|
@ -173,21 +173,6 @@ GetMetaFileBitsEx(
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
DWORD
|
||||
STDCALL
|
||||
GetFontLanguageInfo(
|
||||
HDC hDc
|
||||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
|
@ -904,6 +904,18 @@ GetCharWidthI(HDC hdc,
|
|||
(PVOID) lpBuffer );
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
DWORD
|
||||
STDCALL
|
||||
GetFontLanguageInfo(
|
||||
HDC hDc
|
||||
)
|
||||
{
|
||||
return GetDCDWord(hDc, GdiGetFontLanguageInfo, GCP_ERROR);
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue