mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
15 lines
424 B
Plaintext
15 lines
424 B
Plaintext
// Modes for examine text output
|
|
#define EXAMINE_MODE_DEFAULT 0
|
|
#define EXAMINE_MODE_INCLUDE_USAGE 1
|
|
#define EXAMINE_MODE_SWITCH_TO_PANEL 2
|
|
|
|
// Should be one higher than the above
|
|
#define EXAMINE_MODE_MAX 3
|
|
|
|
// Modes for parsing multilingual speech
|
|
#define MULTILINGUAL_DEFAULT 0
|
|
#define MULTILINGUAL_SPACE 1
|
|
#define MULTILINGUAL_DOUBLE_DELIMITER 2
|
|
#define MULTILINGUAL_OFF 3
|
|
|
|
#define MULTILINGUAL_MODE_MAX 4 |