1
0
mirror of https://github.com/Dejvino/lilybook.git synced 2024-09-28 18:03:37 +00:00
lilybook/main/modes/reader/reader_storage.h

15 lines
313 B
C

#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
#endif
void reader_storage_get_filename(char* buf, int len);
long reader_storage_get_length();
void reader_storage_store_file(char* source_path);
long reader_storage_get_position();
void reader_storage_set_position(long position);
#ifdef __cplusplus
}
#endif