You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
367 B
21 lines
367 B
#ifndef _FONTS_H
|
|
#define _FONTS_H
|
|
|
|
#include <richedit.h>
|
|
|
|
enum {
|
|
fntsSysIcon=0,
|
|
fntsSysIconBold,
|
|
//fntsSysIconItalic,
|
|
//fntsSysIconBoldItalic,
|
|
//fntsSysMenu,
|
|
//fntsFolderNameHorz,
|
|
//fntsFolderNameVert,
|
|
fntsMax
|
|
};
|
|
|
|
BOOL InitFonts(void);
|
|
HFONT GetFont(int ifont);
|
|
void DeleteFonts(void);
|
|
|
|
#endif //_FONTS_H
|