mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 06:54:19 +00:00
feb1b2f349
* updater, storage: removed mentions of LFS from public APIs; updated corresponding strings * rpc: updated include path Co-authored-by: あく <alleteam@gmail.com>
18 lines
375 B
C
18 lines
375 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <storage/storage.h>
|
|
|
|
#define INT_BACKUP_DEFAULT_FILENAME "backup.tar"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool int_backup_create(Storage* storage, const char* destination);
|
|
bool int_backup_exists(Storage* storage, const char* source);
|
|
bool int_backup_unpack(Storage* storage, const char* source);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|