X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/a9c0245444b7b67e077826089b026d46297fab64..acb796a268236409eaf814ac22e329a008632c3a:/putty.h diff --git a/putty.h b/putty.h index 90e10ffc..755e69e0 100644 --- a/putty.h +++ b/putty.h @@ -93,15 +93,6 @@ typedef HDC Context; GLOBAL int rows, cols, savelines; -#define INBUF_SIZE 2048 -GLOBAL unsigned char inbuf[INBUF_SIZE]; -GLOBAL int inbuf_head; - -#define OUTBUF_SIZE 2048 -#define OUTBUF_MASK (OUTBUF_SIZE-1) -GLOBAL unsigned char outbuf[OUTBUF_SIZE]; -GLOBAL int outbuf_head, outbuf_reap; - GLOBAL int has_focus; GLOBAL int in_vbell; @@ -505,7 +496,7 @@ extern Backend ssh_backend; * Exports from ldisc.c. */ -extern void ldisc_send(char *buf, int len); +extern void ldisc_send(char *buf, int len, int interactive); /* * Exports from sshrand.c. @@ -540,8 +531,8 @@ void EnableSizeTip(int bEnable); #define CP_UTF8 65001 #endif void init_ucs_tables(void); -void lpage_send(int codepage, char *buf, int len); -void luni_send(wchar_t * widebuf, int len); +void lpage_send(int codepage, char *buf, int len, int interactive); +void luni_send(wchar_t * widebuf, int len, int interactive); wchar_t xlat_uskbd2cyrllic(int ch); int check_compose(int first, int second); int decode_codepage(char *cp_name);