MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | #ifndef LPC_INPUT_TO_H_ |
| 2 | #define LPC_INPUT_TO_H_ |
| 3 | |
| 4 | /* Mode values recognized by the efun input_to() */ |
| 5 | |
| 6 | #define INPUT_NOECHO 1 /* Don't echo the next line typed */ |
| 7 | #define INPUT_CHARMODE 2 /* Switch into/out of charmode */ |
| 8 | #define INPUT_PROMPT 4 /* Use a custom prompt */ |
| 9 | #define INPUT_NO_TELNET 8 /* Switch into/out of charmode on the driver |
| 10 | * side only. |
| 11 | */ |
| 12 | #define INPUT_APPEND 16 /* Append the input_to to the list of already |
| 13 | * pending input_to's. |
| 14 | */ |
| 15 | #define INPUT_IGNORE_BANG 128 /* Disallow the '!' escape */ |
| 16 | |
| 17 | #endif /* LPC_INPUT_TO_H_ */ |