mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-23 21:34:35 +03:00
266d4b3234
* feat: happy mode * feat: remove sad dolphin when powering off in happy mode * style: address review comments * Dolphin: add missing furi_checks * Komi: add missing region initialization on startup Co-authored-by: あく <alleteam@gmail.com>
27 lines
607 B
C
27 lines
607 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
// reserve 100 for button presses, submenu selections, etc.
|
|
DesktopSettingsCustomEventExit = 100,
|
|
DesktopSettingsCustomEventDone,
|
|
|
|
DesktopSettingsCustomEvent1stPinEntered,
|
|
DesktopSettingsCustomEventPinsEqual,
|
|
DesktopSettingsCustomEventPinsDifferent,
|
|
|
|
DesktopSettingsCustomEventSetPin,
|
|
DesktopSettingsCustomEventChangePin,
|
|
DesktopSettingsCustomEventDisablePin,
|
|
|
|
DesktopSettingsCustomEventSetDefault,
|
|
DesktopSettingsCustomEventSetDummy,
|
|
} DesktopSettingsCustomEvent;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|