Added empty bootstrap.c and its build target
[AROS.git] / workbench / system / ftmanager / fontinfo_class.h
blob7acf3d2b8d489d48e73b2abec73378043d91ba7b
1 #ifndef FONTINFO_CLASS_H
2 #define FONTINFO_CLASS_H
4 #define FONTINFO_BASE TAG_USER
5 #define MUIA_FontInfo_Filename (FONTINFO_BASE + 1)
6 #define MUIA_FontInfo_Face (FONTINFO_BASE + 2)
8 #define FONTINFO_MBASE TAG_USER
9 #define MUIM_FontInfo_UpdatePreview (FONTINFO_MBASE + 1)
10 #define MUIM_FontInfo_SetOTags (FONTINFO_MBASE + 2)
11 #define MUIM_FontInfo_WriteFiles (FONTINFO_MBASE + 3)
13 struct MUI_CustomClass *FontInfoClass;
15 #define FontInfoObject NewObject(FontInfoClass->mcc_Class, NULL //)
17 void CleanupFontInfoClass(void);
18 int InitFontInfoClass(void);
20 #endif