1 #ifndef _FONTFILE_H 2 #define _FONTFILE_H 3 4 #include "sfnt.h" 5 6 struct _FONTFILE { 7 OTF_FILE *sfnt; 8 // ??? *cff; 9 char *stdname; 10 union { 11 int fobj; 12 void *user; 13 }; 14 }; 15 16 typedef struct _FONTFILE FONTFILE; 17 18 FONTFILE *fontfile_open_sfnt(OTF_FILE *otf); 19 FONTFILE *fontfile_open_std(const char *name); 20 void fontfile_close(FONTFILE *ff); 21 22 #endif 23