mikroSDK Reference Manual
lv_fsdrv.h
Go to the documentation of this file.
1
6#ifndef LV_FSDRV_H
7#define LV_FSDRV_H
8
9#ifdef __cplusplus
10extern "C" {
11#endif
12
13/*********************
14 * INCLUDES
15 *********************/
17
18/*********************
19 * DEFINES
20 *********************/
21
22/**********************
23 * TYPEDEFS
24 **********************/
25
26/**********************
27 * GLOBAL PROTOTYPES
28 **********************/
29
30#if LV_USE_FS_FATFS != '\0'
31void lv_fs_fatfs_init(void);
32#endif
33
34#if LV_USE_FS_STDIO != '\0'
35void lv_fs_stdio_init(void);
36#endif
37
38#if LV_USE_FS_POSIX != '\0'
39void lv_fs_posix_init(void);
40#endif
41
42#if LV_USE_FS_WIN32 != '\0'
43void lv_fs_win32_init(void);
44#endif
45
46/**********************
47 * MACROS
48 **********************/
49
50#ifdef __cplusplus
51} /* extern "C" */
52#endif
53
54#endif /*LV_FSDRV_H*/
55