when dropping into user mode make sure endian is set
[AROS.git] / workbench / system / ftmanager / fontlist_class.h
blob00dcea0841368d1a447a832926f7779d68357465
1 #ifndef FONTLIST_CLASS_H
2 #define FONTLIST_CLASS_H
4 #include <exec/types.h>
6 #define FONTLIST_MBASE TAG_USER
7 #define MUIM_FontList_AddDir (FONTLIST_MBASE + 1)
8 #define MUIM_FontList_AddEntry (FONTLIST_MBASE + 2)
10 struct MUI_CustomClass *FontListClass;
12 #define FontListObject NewObject(FontListClass->mcc_Class, NULL //)
14 struct MUIS_FontList_Entry
16 STRPTR FileName;
17 STRPTR FamilyName;
18 STRPTR StyleName;
21 void CleanupFontListClass(void);
22 int InitFontListClass(void);
24 #endif