2022-05-06 16:48:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
enum iButtonCustomEvent {
|
|
|
|
// Reserve first 100 events for button types and indexes, starting from 0
|
|
|
|
iButtonCustomEventReserved = 100,
|
|
|
|
|
|
|
|
iButtonCustomEventBack,
|
|
|
|
iButtonCustomEventTextEditResult,
|
|
|
|
iButtonCustomEventByteEditResult,
|
|
|
|
iButtonCustomEventWorkerEmulated,
|
|
|
|
iButtonCustomEventWorkerRead,
|
2022-07-04 13:09:46 +00:00
|
|
|
|
2022-07-25 14:16:45 +00:00
|
|
|
iButtonCustomEventRpcLoad,
|
2022-07-04 13:09:46 +00:00
|
|
|
iButtonCustomEventRpcExit,
|
2022-08-02 12:54:12 +00:00
|
|
|
iButtonCustomEventRpcSessionClose,
|
2022-05-06 16:48:39 +00:00
|
|
|
};
|