33 lines
776 B
C
33 lines
776 B
C
#ifndef __FS__FILE_H__
|
|
#define __FS__FILE_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include <lib/part.h>
|
|
#if uefi == 1
|
|
# include <efi.h>
|
|
#endif
|
|
|
|
bool fs_get_guid(struct guid *guid, struct volume *part);
|
|
|
|
struct file_handle {
|
|
bool is_memfile;
|
|
bool readall;
|
|
struct volume *vol;
|
|
void *fd;
|
|
void (*read)(void *fd, void *buf, uint64_t loc, uint64_t count);
|
|
void (*close)(void *fd);
|
|
uint64_t size;
|
|
#if uefi == 1
|
|
EFI_HANDLE efi_part_handle;
|
|
#endif
|
|
};
|
|
|
|
struct file_handle *fopen(struct volume *part, const char *filename);
|
|
void fread(struct file_handle *fd, void *buf, uint64_t loc, uint64_t count);
|
|
void fclose(struct file_handle *fd);
|
|
void *freadall(struct file_handle *fd, uint32_t type);
|
|
|
|
#endif
|