mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
15 lines
391 B
C
15 lines
391 B
C
#ifndef FILESYSTEM_H
|
|
#define FILESYSTEM_H
|
|
|
|
#include <stdbool.h>
|
|
#include "system.h"
|
|
|
|
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);
|
|
void filesystem_get_story_title(ost_context_t *ctx);
|
|
uint32_t filesystem_get_capacity();
|
|
|
|
#endif // FILESYSTEM_H
|