mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-30 16:29:12 +00:00
15 lines
406 B
C
15 lines
406 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,
|
|
};
|