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>
16 lines
399 B
C
16 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,
|
|
};
|