discoverpixy
ll_filesystem.h
Go to the documentation of this file.
1 #include "filesystem.h"
2 
7 
13 
18 
19 
20 bool ll_filesystem_init();
21 
22 DIRECTORY_STRUCT* ll_filesystem_dir_open(const char* path);
24 FILE_HANDLE* ll_filesystem_file_open(const char* filename);
26 FILE_STATUS ll_filesystem_file_seek(FILE_HANDLE* handle, uint32_t offset);
27 FILE_STATUS ll_filesystem_file_read(FILE_HANDLE* handle, uint8_t* buf, uint32_t size);
28 FILE_STATUS ll_filesystem_file_write(FILE_HANDLE* handle, uint8_t* buf, uint32_t size);
29 
FILE_STATUS ll_filesystem_file_seek(FILE_HANDLE *handle, uint32_t offset)
bool ll_filesystem_init()
void ll_filesystem_file_close(FILE_HANDLE *handle)
FILE_STATUS ll_filesystem_file_write(FILE_HANDLE *handle, uint8_t *buf, uint32_t size)
FILE_STATUS ll_filesystem_file_read(FILE_HANDLE *handle, uint8_t *buf, uint32_t size)
Definition: filesystem.h:66
Definition: filesystem.h:57
void ll_filesystem_dir_close(DIRECTORY_STRUCT *dir)
DIRECTORY_STRUCT * ll_filesystem_dir_open(const char *path)
FILE_STATUS
Definition: filesystem.h:75
FILE_HANDLE * ll_filesystem_file_open(const char *filename)