mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 23:10:22 +00:00
35 lines
895 B
C
35 lines
895 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,
|
|
|
|
NfcCustomEventEmulationTimeExpired,
|
|
} NfcCustomEvent;
|