mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 00:33:09 +00:00
17 lines
465 B
C
17 lines
465 B
C
#pragma once
|
|
|
|
enum NfcCustomEvent {
|
|
// Reserve first 100 events for button types and indexes, starting from 0
|
|
NfcCustomEventReserved = 100,
|
|
|
|
NfcCustomEventViewExit,
|
|
NfcCustomEventWorkerExit,
|
|
NfcCustomEventByteInputDone,
|
|
NfcCustomEventTextInputDone,
|
|
NfcCustomEventDictAttackDone,
|
|
NfcCustomEventDictAttackSkip,
|
|
NfcCustomEventRpcLoad,
|
|
NfcCustomEventRpcSessionClose,
|
|
NfcCustomEventUpdateLog,
|
|
NfcCustomEventSaveShadow,
|
|
};
|