diff options
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/file.c | 2 | ||||
| -rw-r--r-- | fs/file.h | 6 | ||||
| -rw-r--r-- | fs/foolfs.h | 0 | ||||
| -rw-r--r-- | fs/mount.c | 12 | ||||
| -rw-r--r-- | fs/mount.h | 14 |
5 files changed, 31 insertions, 3 deletions
@@ -1,2 +1,4 @@ #include "file.h" + + @@ -3,6 +3,8 @@ #include <stdint.h> +#define FILE_MAX_FILES 100; + typedef struct { int(* seek)(int offset, int whence); @@ -17,4 +19,8 @@ typedef struct }file; + + + + #endif diff --git a/fs/foolfs.h b/fs/foolfs.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/fs/foolfs.h diff --git a/fs/mount.c b/fs/mount.c new file mode 100644 index 0000000..616262d --- /dev/null +++ b/fs/mount.c @@ -0,0 +1,12 @@ +#include "mount.h" + +void mount_add(char *path, void *data, + file (*open)(struct mount_struct*,char *path), + int (*getdents)(struct mount_struct*, uint32_t file_desciptor, fs_dirent *entries, uint32_t max_count)) +{ +} + +mount *mounts_get() +{ + return 0; +} @@ -3,15 +3,23 @@ #define MOUNT_MAX_MOUNTS 10 -typedef struct mount_strutc +#include <stdint.h> +#include "file.h" +#include "fs.h" + +typedef struct mount_struct { char path[256]; // where are we mounted - int (*getdents)(mount_struct*, uint32_t file_desciptor, fs_dirent *entries, uint32_t max_count); - file (*open)ByName(mount_struct*,char *path); + int (*getdents)(struct mount_struct*, uint32_t file_desciptor, fs_dirent *entries, uint32_t max_count); + file (*open)(struct mount_struct*,char *path); void *data //opaque }mount; mount *mounts_get(); +void mount_add(char *path, void *data,file (*open)(struct mount_struct*,char *path),int (*getdents)(struct mount_struct*, uint32_t file_desciptor, fs_dirent *entries, uint32_t max_count)); + + + // #endif |
