mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-14 20:33:28 +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
|