feat make some structs private

This commit is contained in:
Gabor Kiss-Vamosi
2021-05-21 10:58:28 +02:00
parent 46253b1286
commit d73e42011d
14 changed files with 95 additions and 78 deletions

View File

@@ -21,6 +21,17 @@
/**********************
* TYPEDEFS
**********************/
typedef struct _lv_img_decoder {
lv_img_decoder_info_f_t info_cb;
lv_img_decoder_open_f_t open_cb;
lv_img_decoder_read_line_f_t read_line_cb;
lv_img_decoder_close_f_t close_cb;
#if LV_USE_USER_DATA
void * user_data;
#endif
} lv_img_decoder_t;
typedef struct {
lv_fs_file_t f;
lv_color_t * palette;