mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-15 04:42:35 +00:00
15 lines
313 B
C
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
|