2022-05-06 16:48:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-11-02 13:10:16 +00:00
|
|
|
typedef enum {
|
2022-05-06 16:48:39 +00:00
|
|
|
// Reserve first 100 events for button types and indexes, starting from 0
|
|
|
|
iButtonCustomEventReserved = 100,
|
|
|
|
|
|
|
|
iButtonCustomEventBack,
|
|
|
|
iButtonCustomEventTextEditResult,
|
2023-03-02 13:23:33 +00:00
|
|
|
iButtonCustomEventByteEditChanged,
|
2022-05-06 16:48:39 +00:00
|
|
|
iButtonCustomEventByteEditResult,
|
|
|
|
iButtonCustomEventWorkerEmulated,
|
|
|
|
iButtonCustomEventWorkerRead,
|
2023-11-02 13:10:16 +00:00
|
|
|
iButtonCustomEventWorkerWriteOK,
|
|
|
|
iButtonCustomEventWorkerWriteSameKey,
|
|
|
|
iButtonCustomEventWorkerWriteNoDetect,
|
|
|
|
iButtonCustomEventWorkerWriteCannotWrite,
|
2022-07-04 13:09:46 +00:00
|
|
|
|
2023-11-10 07:22:34 +00:00
|
|
|
iButtonCustomEventRpcLoadFile,
|
2022-07-04 13:09:46 +00:00
|
|
|
iButtonCustomEventRpcExit,
|
2022-08-02 12:54:12 +00:00
|
|
|
iButtonCustomEventRpcSessionClose,
|
2023-11-02 13:10:16 +00:00
|
|
|
} iButtonCustomEvent;
|