From 573a28a2ea7534a1e85d2e0a3aa3d06b1218e08c Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Fri, 22 May 2015 09:14:16 +0200 Subject: started implementing files --- fs/mount.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 fs/mount.h (limited to 'fs/mount.h') 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 -- cgit v1.2.3