mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
d80edba891
* RPC App: state message and GUI update * Protobuf submodule update Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
15 lines
399 B
C
15 lines
399 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,
|
|
};
|