5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 Desc: Font prefs definitions
13 # include <exec/types.h>
15 #ifndef GRAPHICS_TEXT_H
16 # include <graphics/text.h>
18 #ifndef LIBRARIES_IFFPARSE_H
19 # include <libraries/iffparse.h>
23 #define ID_FONT MAKE_ID('F','O','N','T')
25 /* The maximum length the name of a font may have. */
26 #define FONTNAMESIZE 128
30 LONG fp_Reserved
[3]; /* PRIVATE */
31 UWORD fp_Reserved2
; /* PRIVATE */
32 UWORD fp_Type
; /* see below */
36 struct TextAttr fp_TextAttr
;
37 BYTE fp_Name
[FONTNAMESIZE
];
40 /* Values for fp_Type */
43 #define FP_SCREENFONT 2
45 #endif /* PREFS_FONT_H */