Finished GetTextCharsetInfo routine.

This commit is contained in:
Guy Albertelli 1999-01-24 09:50:09 +00:00 committed by Alexandre Julliard
parent f7e185d2ae
commit 532921729e
1 changed files with 4 additions and 3 deletions

View File

@ -762,9 +762,8 @@ UINT32 WINAPI GetTextCharsetInfo(
HGDIOBJ32 hFont;
UINT32 charSet = DEFAULT_CHARSET;
LOGFONT32W lf;
CHARSETINFO csinfo;
if (fs != NULL)
FIXME(text,"(0x%x,%p,%08lx): stub\n",hdc,fs,flags);
hFont = GetCurrentObject(hdc, OBJ_FONT);
if (hFont == 0)
return(DEFAULT_CHARSET);
@ -772,7 +771,9 @@ UINT32 WINAPI GetTextCharsetInfo(
charSet = lf.lfCharSet;
if (fs != NULL) {
/* ... fill fontstruct too ... still to do*/
if (!TranslateCharsetInfo(charSet, &csinfo, TCI_SRCCHARSET))
return (DEFAULT_CHARSET);
memcpy(fs, &csinfo.fs, sizeof(FONTSIGNATURE));
}
return charSet;
}