2022-02-02 19:59:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
enum NfcCustomEvent {
|
|
|
|
// Reserve first 100 events for button types and indexes, starting from 0
|
|
|
|
NfcCustomEventReserved = 100,
|
|
|
|
|
|
|
|
NfcCustomEventViewExit,
|
|
|
|
NfcCustomEventWorkerExit,
|
|
|
|
NfcCustomEventByteInputDone,
|
|
|
|
NfcCustomEventTextInputDone,
|
2022-03-23 22:14:34 +00:00
|
|
|
NfcCustomEventDictAttackDone,
|
2022-07-26 15:30:49 +00:00
|
|
|
NfcCustomEventDictAttackSkip,
|
2022-07-25 14:16:45 +00:00
|
|
|
NfcCustomEventRpcLoad,
|
2022-08-02 12:54:12 +00:00
|
|
|
NfcCustomEventRpcSessionClose,
|
2023-05-17 16:45:30 +00:00
|
|
|
NfcCustomEventUpdateLog,
|
|
|
|
NfcCustomEventSaveShadow,
|
2022-05-06 13:37:10 +00:00
|
|
|
};
|