mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
18 lines
377 B
C
18 lines
377 B
C
#ifndef FILESYSTEM_H
|
|
#define FILESYSTEM_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t number_of_stories;
|
|
uint32_t current_story;
|
|
} ost_context_t;
|
|
|
|
bool filesystem_read_index_file(ost_context_t *ctx);
|
|
void filesystem_mount();
|
|
void filesystem_display_image(const char *filename);
|
|
void filesystem_load_rom(uint8_t *mem, const char *filename);
|
|
|
|
#endif // FILESYSTEM_H
|