openHASP/lib/lv_fs_if/lv_fs_if.h
2020-02-01 00:17:42 +01:00

48 lines
659 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*/