2022-05-06 19:48:39 +03: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 16:09:46 +03:00
|
|
|
|
2022-07-25 17:16:45 +03:00
|
|
|
iButtonCustomEventRpcLoad,
|
2022-07-04 16:09:46 +03:00
|
|
|
iButtonCustomEventRpcExit,
|
2022-08-02 21:54:12 +09:00
|
|
|
iButtonCustomEventRpcSessionClose,
|
2022-05-06 19:48:39 +03:00
|
|
|
};
|