14 lines
209 B
Plaintext
14 lines
209 B
Plaintext
namespace hmmmm.ctrl.exec_notif;
|
|
|
|
enum ExecState: byte {
|
|
still = 0,
|
|
executing = 1,
|
|
paused = 2,
|
|
stopped = 3,
|
|
}
|
|
|
|
table ExecNotifyMessage {
|
|
tclk: uint64;
|
|
state: ExecState;
|
|
}
|