2022-02-02 22:59:28 +03: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-24 01:14:34 +03:00
|
|
|
NfcCustomEventDictAttackDone,
|
2022-07-26 18:30:49 +03:00
|
|
|
NfcCustomEventDictAttackSkip,
|
2022-07-25 17:16:45 +03:00
|
|
|
NfcCustomEventRpcLoad,
|
2022-08-02 21:54:12 +09:00
|
|
|
NfcCustomEventRpcSessionClose,
|
2023-05-17 19:45:30 +03:00
|
|
|
NfcCustomEventUpdateLog,
|
|
|
|
NfcCustomEventSaveShadow,
|
2022-05-06 16:37:10 +03:00
|
|
|
};
|