feat: (iso9660) directory read support
[lunaix-os.git] / lunaix-os / kernel / fs / iso9660 / file.c
diff --git a/lunaix-os/kernel/fs/iso9660/file.c b/lunaix-os/kernel/fs/iso9660/file.c
new file mode 100644 (file)
index 0000000..6813c22
--- /dev/null
@@ -0,0 +1,37 @@
+#include <lunaix/fs.h>
+#include <lunaix/fs/iso9660.h>
+
+int
+iso9660_open(struct v_inode* this, struct v_file* file)
+{
+    // TODO
+    return 0;
+}
+
+int
+iso9660_close(struct v_file* file)
+{
+    // TODO
+    return 0;
+}
+
+int
+iso9660_read(struct v_inode* inode, void* buffer, size_t len, size_t fpos)
+{
+    // TODO
+    return 0;
+}
+
+int
+iso9660_write(struct v_inode* inode, void* buffer, size_t len, size_t fpos)
+{
+    // TODO
+    return EROFS;
+}
+
+int
+iso9660_seek(struct v_inode* inode, size_t offset)
+{
+    // TODO
+    return 0;
+}
\ No newline at end of file