2023-09-27 15:16:46 -04:00
|
|
|
#ifndef EXTRA_H
|
|
|
|
#define EXTRA_H
|
|
|
|
|
|
|
|
// Items related to the Extra string of key-value pairs found in MxOb
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
enum ExtraActionType {
|
2023-11-21 05:35:03 -05:00
|
|
|
ExtraActionType_none = 0,
|
2023-10-24 19:38:27 -04:00
|
|
|
ExtraActionType_opendisk = 1,
|
|
|
|
ExtraActionType_openram = 2,
|
|
|
|
ExtraActionType_close = 3,
|
|
|
|
ExtraActionType_start = 4,
|
|
|
|
ExtraActionType_stop = 5,
|
|
|
|
ExtraActionType_run = 6,
|
|
|
|
ExtraActionType_exit = 7,
|
|
|
|
ExtraActionType_enable = 8,
|
|
|
|
ExtraActionType_disable = 9,
|
|
|
|
ExtraActionType_notify = 10,
|
|
|
|
ExtraActionType_unknown = 11,
|
2023-09-27 15:16:46 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EXTRA_H
|