gdi: Added WineEngGetCharABCWidthsI stub for the non-freetype case.

oldstable
Alexandre Julliard 2006-04-21 11:27:38 +02:00
parent b0c63af124
commit 80634596a5
1 changed files with 7 additions and 0 deletions

View File

@ -4136,6 +4136,13 @@ BOOL WineEngGetCharABCWidths(GdiFont font, UINT firstChar, UINT lastChar,
return FALSE;
}
BOOL WineEngGetCharABCWidthsI(GdiFont font, UINT firstChar, UINT count, LPWORD pgi,
LPABC buffer)
{
ERR("called but we don't have FreeType\n");
return FALSE;
}
BOOL WineEngGetTextExtentPoint(GdiFont font, LPCWSTR wstr, INT count,
LPSIZE size)
{