mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
614f9b8705
This reverts commit 19a5f02d66
.
33 lines
854 B
C
33 lines
854 B
C
#pragma once
|
|
|
|
typedef enum {
|
|
// Reserve first 100 events for button types and indexes, starting from 0
|
|
NfcCustomEventReserved = 100,
|
|
|
|
// Mf classic dict attack events
|
|
NfcCustomEventDictAttackComplete,
|
|
NfcCustomEventDictAttackSkip,
|
|
NfcCustomEventDictAttackDataUpdate,
|
|
|
|
NfcCustomEventCardDetected,
|
|
NfcCustomEventCardLost,
|
|
|
|
NfcCustomEventViewExit,
|
|
NfcCustomEventWorkerExit,
|
|
NfcCustomEventWorkerUpdate,
|
|
NfcCustomEventWrongCard,
|
|
NfcCustomEventTimerExpired,
|
|
NfcCustomEventByteInputDone,
|
|
NfcCustomEventTextInputDone,
|
|
NfcCustomEventDictAttackDone,
|
|
|
|
NfcCustomEventRpcLoadFile,
|
|
NfcCustomEventRpcExit,
|
|
NfcCustomEventRpcSessionClose,
|
|
|
|
NfcCustomEventPollerSuccess,
|
|
NfcCustomEventPollerIncomplete,
|
|
NfcCustomEventPollerFailure,
|
|
|
|
NfcCustomEventListenerUpdate,
|
|
} NfcCustomEvent;
|