Files
KatauOS/include/vfs.h
T
2025-09-23 19:38:14 +03:00

25 lines
645 B
C

#ifndef VFS_H
#define VFS_H
#define ISO_9660_BUFFER_LENGTH 2048
#include <stdbool.h>
#include "../include/atapi.h"
#include "../include/lib9660.h"
extern l9660_fs* global_fs;
extern l9660_dir* root_dir;
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);
size_t vfs_read_file_length(l9660_file *file, uint8_t* buffer, size_t length);
void test_iso9660();
int vsf_read_file_by_path(const char* path, uint8_t** buffer, l9660_dir* dir);
void follow_path(const char* path, l9660_file* file, l9660_dir* dir);
#endif