diff options
| author | Michal Idziorek <m.i@gmx.at> | 2015-05-22 09:14:16 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2015-05-22 09:14:16 +0200 |
| commit | 573a28a2ea7534a1e85d2e0a3aa3d06b1218e08c (patch) | |
| tree | 4d23995749d02459951bb386be238ad491cda45f /fs/mount.h | |
| parent | bd5c0694678df3361eddaedcf9ceca6db687e010 (diff) | |
started implementing files
Diffstat (limited to 'fs/mount.h')
| -rw-r--r-- | fs/mount.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fs/mount.h b/fs/mount.h new file mode 100644 index 0000000..d27195f --- /dev/null +++ b/fs/mount.h @@ -0,0 +1,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 |
