gdi32: Don't pass a DC handle to WineEngGetFontUnicodeRanges.

oldstable
Alexandre Julliard 2007-09-26 20:17:13 +02:00
parent 1abc24d29c
commit 543270dfb5
3 changed files with 18 additions and 20 deletions

View File

@ -3411,5 +3411,14 @@ BOOL WINAPI GetCharWidthI(HDC hdc, UINT first, UINT count, LPWORD glyphs, LPINT
*/
DWORD WINAPI GetFontUnicodeRanges(HDC hdc, LPGLYPHSET lpgs)
{
return WineEngGetFontUnicodeRanges(hdc, lpgs);
DWORD ret = 0;
DC *dc = DC_GetDCPtr(hdc);
TRACE("(%p, %p)\n", hdc, lpgs);
if (!dc) return 0;
if (dc->gdiFont) ret = WineEngGetFontUnicodeRanges(dc->gdiFont, lpgs);
DC_ReleaseDCPtr(dc);
return ret;
}

View File

@ -4634,28 +4634,17 @@ static DWORD get_font_unicode_ranges(FT_Face face, GLYPHSET *gs)
return num_ranges;
}
DWORD WineEngGetFontUnicodeRanges(HDC hdc, LPGLYPHSET glyphset)
DWORD WineEngGetFontUnicodeRanges(GdiFont *font, LPGLYPHSET glyphset)
{
DWORD size = 0;
DC *dc = DC_GetDCPtr(hdc);
DWORD num_ranges = get_font_unicode_ranges(font->ft_face, glyphset);
TRACE("(%p, %p)\n", hdc, glyphset);
if (!dc) return 0;
if (dc->gdiFont)
size = sizeof(GLYPHSET) + sizeof(WCRANGE) * (num_ranges - 1);
if (glyphset)
{
DWORD num_ranges = get_font_unicode_ranges(dc->gdiFont->ft_face, glyphset);
size = sizeof(GLYPHSET) + sizeof(WCRANGE) * (num_ranges - 1);
if (glyphset)
{
glyphset->cbThis = size;
glyphset->cRanges = num_ranges;
}
glyphset->cbThis = size;
glyphset->cRanges = num_ranges;
}
DC_ReleaseDCPtr(dc);
return size;
}
@ -5079,7 +5068,7 @@ BOOL WineEngGetLinkedHFont(DC *dc, WCHAR c, HFONT *new_hfont, UINT *glyph)
return FALSE;
}
DWORD WineEngGetFontUnicodeRanges(HDC hdc, LPGLYPHSET glyphset)
DWORD WineEngGetFontUnicodeRanges(GdiFont *font, LPGLYPHSET glyphset)
{
FIXME("(%p, %p): stub\n", hdc, glyphset);
return 0;

View File

@ -430,7 +430,7 @@ extern BOOL WineEngGetCharABCWidthsI(GdiFont *font, UINT firstChar,
UINT count, LPWORD pgi, LPABC buffer);
extern BOOL WineEngGetCharWidth(GdiFont*, UINT, UINT, LPINT);
extern DWORD WineEngGetFontData(GdiFont*, DWORD, DWORD, LPVOID, DWORD);
extern DWORD WineEngGetFontUnicodeRanges(HDC, LPGLYPHSET);
extern DWORD WineEngGetFontUnicodeRanges(GdiFont *, LPGLYPHSET);
extern DWORD WineEngGetGlyphIndices(GdiFont *font, LPCWSTR lpstr, INT count,
LPWORD pgi, DWORD flags);
extern DWORD WineEngGetGlyphOutline(GdiFont*, UINT glyph, UINT format,