Get system fonts details
BOOL get_system_font_info( int nType, int * lpnFontSize, byte * lpnCharSet, LPSTR lpszFontName, int nNameSize )
True of success, esle false
EX1
void get_system_font_info_ex1() { int nFontSize; byte nCharSet = ANSI_CHARSET; string str; char szTemp[LF_FACESIZE + 1]; int nType = 3; if(get_system_font_info(nType, &nFontSize, &nCharSet, szTemp, LF_FACESIZE)) str = szTemp; }
get_system_font_name
origin.h