20 lines
473 B
C
20 lines
473 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);
|
|
|
|
#endif |