continue working on implementing lib9660 into the kernel

This commit is contained in:
2025-08-16 19:41:48 +03:00
parent 287ac77422
commit ce6e9642ee
10 changed files with 151 additions and 53 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef VFS_H
#define VFS_H
#include <stdbool.h>
#include "../include/atapi.h"
#include "../include/lib9660.h"
extern l9660_fs global_fs;
bool read_sector_callback(l9660_fs *fs, void *buf, uint32_t sector);
void mount_fs();
void list_files(l9660_dir *dir);
size_t vfs_read_file(l9660_file *file, uint8_t* buffer);
#endif