mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
21 lines
653 B
C
21 lines
653 B
C
#pragma once
|
|
|
|
typedef enum {
|
|
// Reserve first 100 events for button types and indexes, starting from 0
|
|
iButtonCustomEventReserved = 100,
|
|
|
|
iButtonCustomEventBack,
|
|
iButtonCustomEventTextEditResult,
|
|
iButtonCustomEventByteEditChanged,
|
|
iButtonCustomEventByteEditResult,
|
|
iButtonCustomEventWorkerEmulated,
|
|
iButtonCustomEventWorkerRead,
|
|
iButtonCustomEventWorkerWriteOK,
|
|
iButtonCustomEventWorkerWriteSameKey,
|
|
iButtonCustomEventWorkerWriteNoDetect,
|
|
iButtonCustomEventWorkerWriteCannotWrite,
|
|
|
|
iButtonCustomEventRpcLoad,
|
|
iButtonCustomEventRpcExit,
|
|
iButtonCustomEventRpcSessionClose,
|
|
} iButtonCustomEvent;
|