1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
65
66
67
74
75
76
77
78
/* ... */
#include "sdkconfig.h"
#include "esp_vfs.h"
#include "esp_vfs_common.h"
#ifdef __cplusplus
extern "C" {
#endif
#if CONFIG_VFS_SELECT_IN_RAM
#define VFS_MALLOC_FLAGS (MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT)
#else
#define VFS_MALLOC_FLAGS MALLOC_CAP_DEFAULT
#endif
typedef struct vfs_entry_ {
int flags;
const esp_vfs_fs_ops_t *vfs;
char path_prefix[ESP_VFS_PATH_MAX];
size_t path_prefix_len;
void* ctx;
int offset;
}{ ... } vfs_entry_t;
/* ... */
esp_err_t esp_vfs_register_common(const char *base_path, size_t len, const esp_vfs_t* vfs, void* ctx, int *vfs_index);
/* ... */
const vfs_entry_t *get_vfs_for_path(const char *path);
/* ... */
const vfs_entry_t *get_vfs_for_index(int index);
#ifdef __cplusplus
}{...}
#endif