mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
Implement GetETM.
svn path=/trunk/; revision=31480
This commit is contained in:
parent
1d95f6ebc0
commit
a3acf40d6f
1 changed files with 7 additions and 6 deletions
|
@ -1582,19 +1582,20 @@ GdiRealizationInfo(HDC hdc,
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
BOOL
|
||||
STDCALL
|
||||
GetETM(HDC hdc,
|
||||
EXTTEXTMETRIC *petm)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
BOOL Ret = NtGdiGetETM(hdc, petm);
|
||||
if ( Ret )
|
||||
{
|
||||
if ( petm ) petm->emKernPairs = GetKerningPairsA(hdc, 0, 0);
|
||||
}
|
||||
return Ret;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue