mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
Implement GetETM.
svn path=/trunk/; revision=31480
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user