mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
Added option II_NOECHO and II_CHARMODE for interactive_info() to return noecho and charmode information about the given interactive. (Implements #235)
31 lines
911 B
C
31 lines
911 B
C
#ifndef LPC_INTERACTIVE_INFO_H_
|
|
#define LPC_INTERACTIVE_INFO_H_
|
|
|
|
/* Definition of argument values for interactive_info()
|
|
*/
|
|
|
|
#include "configuration.h"
|
|
|
|
/* Connection information */
|
|
#define II_IP_NAME -1
|
|
#define II_IP_NUMBER -2
|
|
#define II_IP_PORT -3
|
|
#define II_IP_ADDRESS -4
|
|
#define II_MUD_PORT -5
|
|
|
|
/* Telnet related information */
|
|
#define II_MCCP_STATS -10
|
|
|
|
/* Input handling */
|
|
#define II_INPUT_PENDING -20
|
|
#define II_EDITING -21
|
|
#define II_IDLE -22
|
|
#define II_NOECHO -23
|
|
#define II_CHARMODE -24
|
|
|
|
/* Output handling */
|
|
#define II_SNOOP_NEXT -30
|
|
#define II_SNOOP_PREV -31
|
|
#define II_SNOOP_ALL -32
|
|
|
|
#endif /* LPC_INTERACTIVE_INFO_H_ */
|