mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
13 lines
420 B
C
13 lines
420 B
C
#pragma once
|
|
|
|
#include <flipper_format/flipper_format.h>
|
|
|
|
/**
|
|
* @brief Migrates config file to the latest version
|
|
* @param fff_data_file original config file to be migrated
|
|
* @param fff_backup_data_file backup copy of original config file
|
|
* @return \c true if operation succeeded; \c false otherwise
|
|
*/
|
|
bool totp_config_migrate_to_latest(
|
|
FlipperFormat* fff_data_file,
|
|
FlipperFormat* fff_backup_data_file);
|