openHASP/lib/lv_fs_if/lv_fs_if.h
2022-02-02 08:04:00 +01:00

49 lines
660 B
C

/**
* @file lv_fs_if.h
*
*/
#ifndef LV_FS_IF_H
#define LV_FS_IF_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "lvgl.h"
#if LV_USE_FS_IF
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
* Register driver(s) for the File system interface
*/
void lv_fs_if_init(void);
/**********************
* MACROS
**********************/
#endif /*LV_USE_FS_IF*/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /*LV_FS_IF_H*/