Implement GetETM.

svn path=/trunk/; revision=31480
This commit is contained in:
James Tabor 2007-12-28 20:06:09 +00:00
parent 1d95f6ebc0
commit a3acf40d6f

View file

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