13 lines
336 B
C
13 lines
336 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,
|
||
|
};
|