1 #ifndef GRAPHICSSERVICES_GSFONT_H_
2 #define GRAPHICSSERVICES_GSFONT_H_
9 kGSFontItalicTrait
= (1 << 0),
10 kGSFontBoldTrait
= (1 << 1),
11 kGSFontExpandedTrait
= (1 << 5),
12 kGSFontCondensedTrait
= (1 << 6),
13 kGSFontMonoSpaceTrait
= (1 << 10),
14 kGSFontVerticalTrait
= (1 << 11),
15 }; typedef uint32_t GSFontSymbolicTraits
;
17 typedef struct __GSFont
*GSFontRef
;
19 GSFontRef
GSFontCreateWithName(const char *name
, GSFontSymbolicTraits traits
, float size
);
25 #endif/*GRAPHICSSERVICES_GSFONT_H_*/