mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-18 10:51:54 +03:00
c2713eff87
Settings scene, char Validator, Idea -> by Willy-JL Implemented by me Kod plohoi, ochen plohoi, kto mozhet - sdelaite kak nado, esli smozhete :) Ya luche varianta ne pridumal poka 4to
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 |