#ifndef FONT_INFO_H #define FONT_INFO_H #include #define YZLUI_VERSION_STRING "0.9" typedef enum { fsRoman = 0, fsBold = 1, fsItalic = 2, fsBoldItalic= 3 } font_style; typedef struct font_info { char family[128]; int size; font_style style; color_t color; font_t *font; // yz font structure } font_info; #endif