ESP3D/libraries/lvgl-8.2.0/src/font/lv_font_loader.h
2023-10-02 19:55:18 +08:00

41 lines
620 B
C

/**
* @file lv_font_loader.h
*
*/
#ifndef LV_FONT_LOADER_H
#define LV_FONT_LOADER_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
lv_font_t * lv_font_load(const char * fontName);
void lv_font_free(lv_font_t * font);
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif /*LV_FONT_LOADER_H*/