mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-19 19:31:50 +03:00
17 lines
438 B
C
17 lines
438 B
C
#pragma once
|
|
|
|
enum iButtonCustomEvent {
|
|
// Reserve first 100 events for button types and indexes, starting from 0
|
|
iButtonCustomEventReserved = 100,
|
|
|
|
iButtonCustomEventBack,
|
|
iButtonCustomEventTextEditResult,
|
|
iButtonCustomEventByteEditResult,
|
|
iButtonCustomEventWorkerEmulated,
|
|
iButtonCustomEventWorkerRead,
|
|
|
|
iButtonCustomEventRpcLoad,
|
|
iButtonCustomEventRpcExit,
|
|
iButtonCustomEventRpcSessionClose,
|
|
};
|