blob: d27195f9023641ca277d215674b2b283947f9ee1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef MOUNT_H
#define MOUNT_H
typedef struct
{
char *path; // where?
int (*getdents)(uint32_t file_desciptor, fs_dirent *entries, uint32_t max_count);
file get
void *data //opaque
}mount;
#endif
|