11 lines
275 B
C
11 lines
275 B
C
|
#pragma once
|
||
|
|
||
|
enum NfcCustomEvent {
|
||
|
// Reserve first 100 events for button types and indexes, starting from 0
|
||
|
NfcCustomEventReserved = 100,
|
||
|
|
||
|
NfcCustomEventViewExit,
|
||
|
NfcCustomEventWorkerExit,
|
||
|
NfcCustomEventByteInputDone,
|
||
|
NfcCustomEventTextInputDone,
|
||
|
};
|