1 /** 2 * @file lv_font_loader.h 3 * 4 */ 5 6 #ifndef LV_FONT_LOADER_H 7 #define LV_FONT_LOADER_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 /********************* 14 * INCLUDES 15 *********************/ 16 17 /********************* 18 * DEFINES 19 *********************/ 20 21 /********************** 22 * TYPEDEFS 23 **********************/ 24 25 /********************** 26 * GLOBAL PROTOTYPES 27 **********************/ 28 29 #if LV_USE_FILESYSTEM 30 31 lv_font_t * lv_font_load(const char * fontName); 32 void lv_font_free(lv_font_t * font); 33 34 #endif 35 36 /********************** 37 * MACROS 38 **********************/ 39 40 #ifdef __cplusplus 41 } /* extern "C" */ 42 #endif 43 44 #endif /*LV_FONT_LOADER_H*/ 45