mirror of https://github.com/sfeakes/AqualinkD.git
12 lines
313 B
C
12 lines
313 B
C
#ifndef AQ_FILESYSTEM_H_
|
|
#define AQ_FILESYSTEM_H_
|
|
|
|
|
|
FILE *aq_open_file( char *filename, bool *ro_root, bool* created_file);
|
|
bool aq_close_file(FILE *file, bool ro_root);
|
|
bool copy_file(const char *source_path, const char *destination_path);
|
|
bool run_aqualinkd_upgrade(bool onlycheck);
|
|
|
|
|
|
|
|
#endif //AQ_FILESYSTEM_H_
|