X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/554c540da1195b438a2883a0d2392843ce5b9e09..0965bee0865fd8ea129b2de62a3c50e09c59a184:/putty.h diff --git a/putty.h b/putty.h index b618dd98..5423ae91 100644 --- a/putty.h +++ b/putty.h @@ -85,6 +85,12 @@ GLOBAL int session_closed; GLOBAL char *logfile; /* + * Window handles for the dialog boxes that can be running during a + * PuTTY session. + */ +GLOBAL HWND logbox; + +/* * I've just looked in the windows standard headr files for WM_USER, there * are hundreds of flags defined using the form WM_USER+123 so I've * renumbered this NETEVENT value and the two in window.c @@ -109,6 +115,21 @@ typedef enum { VT_XWINDOWS, VT_OEMANSI, VT_OEMONLY, VT_POORMAN } VT_Mode; +enum { + /* + * Line discipline option states: off, on, up to the backend. + */ + LD_YES, LD_NO, LD_BACKEND +}; + +enum { + /* + * Line discipline options which the backend might try to control. + */ + LD_EDIT, /* local line editing */ + LD_ECHO /* local echo */ +}; + typedef struct { char *(*init) (char *host, int port, char **realhost); void (*send) (char *buf, int len); @@ -116,6 +137,7 @@ typedef struct { void (*special) (Telnet_Special code); Socket (*socket) (void); int (*sendok) (void); + int (*ldisc) (int); int default_port; } Backend; @@ -128,12 +150,6 @@ extern struct backend_list { } backends[]; typedef struct { - void (*send) (char *buf, int len); -} Ldisc; - -GLOBAL Ldisc *ldisc; - -typedef struct { /* Basic options */ char host[512]; int port; @@ -170,7 +186,8 @@ typedef struct { int alt_f4; /* is it special? */ int alt_space; /* is it special? */ int alt_only; /* is it special? */ - int ldisc_term; + int localecho; + int localedit; int alwaysontop; int scroll_on_key; int scroll_on_disp; @@ -327,6 +344,7 @@ void term_invalidate(void); void term_blink(int set_cursor); void term_paste(void); void term_nopaste(void); +int telnet_ldisc(int option); void from_backend(int is_stderr, char *data, int len); void logfopen (void); void logfclose (void); @@ -361,7 +379,7 @@ extern Backend ssh_backend; * Exports from ldisc.c. */ -extern Ldisc ldisc_term, ldisc_simple; +extern void ldisc_send(char *buf, int len); /* * Exports from sshrand.c.