summaryrefslogtreecommitdiff
path: root/xxx/mount.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-16 11:39:36 +0200
committerMiguel <m.i@gmx.at>2018-09-16 11:39:36 +0200
commit740ae2e69995df37c44fe61f57642ee642982ca2 (patch)
treeb84ec79e9243fd0fe103fab1c1acc1e91e60f53d /xxx/mount.h
parente0449c5adc89eec9f378cb40a56762bf314a80ea (diff)
cleanup and starting improve mounts and file access (pipes, sysfiles, ext2)
Diffstat (limited to 'xxx/mount.h')
-rw-r--r--xxx/mount.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/xxx/mount.h b/xxx/mount.h
new file mode 100644
index 0000000..a327e2e
--- /dev/null
+++ b/xxx/mount.h
@@ -0,0 +1,23 @@
+#ifndef MOUNT_H
+#define MOUNT_H
+
+#define MOUNT_MAX_MOUNTS 10
+
+#include <stdint.h>
+#include "file.h"
+#include "interface/fs.h"
+
+typedef struct mount_struct
+{
+ char path[256]; // where are we mounted
+ 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