mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-01-11 20:28:54 +00:00
18 lines
331 B
C
18 lines
331 B
C
|
#pragma once
|
||
|
|
||
|
#define NAMECHANGER_HEADER "Flipper Name File"
|
||
|
#define NAMECHANGER_VERSION 1
|
||
|
#define NAMECHANGER_PATH EXT_PATH("dolphin/name.settings")
|
||
|
|
||
|
#include "stdbool.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
// Initializes the name changer. (Load name file, apply changes)
|
||
|
bool NameChanger_Init();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|