Prepare release and bump version numbers to 2.13.0
[TortoiseGit.git] / src / TortoisePlink / LDISC.H
blob4989b945fc5dd9108524d1724bfdc7fecd8be264
1 /*\r
2  * ldisc.h: defines the Ldisc data structure used by ldisc.c and\r
3  * ldiscucs.c. (Unfortunately it was necessary to split the ldisc\r
4  * module in two, to avoid unnecessarily linking in the Unicode\r
5  * stuff in tools that don't require it.)\r
6  */\r
7 \r
8 #ifndef PUTTY_LDISC_H\r
9 #define PUTTY_LDISC_H\r
11 struct Ldisc_tag {\r
12     Terminal *term;\r
13     Backend *backend;\r
14     Seat *seat;\r
16     /*\r
17      * Values cached out of conf.\r
18      */\r
19     bool telnet_keyboard, telnet_newline;\r
20     int protocol, localecho, localedit;\r
22     char *buf;\r
23     size_t buflen, bufsiz;\r
24     bool quotenext;\r
25 };\r
27 #endif /* PUTTY_LDISC_H */\r