Fix reverting to parent for renamed file
[TortoiseGit.git] / src / TortoisePlink / LDISC.H
blob030c0ce8d24029d84eb5dbea559f169febce6b12
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 typedef struct ldisc_tag {\r
12     Terminal *term;\r
13     Backend *back;\r
14     void *backhandle;\r
15     void *frontend;\r
17     /*\r
18      * Values cached out of conf.\r
19      */\r
20     int telnet_keyboard, telnet_newline, protocol, localecho, localedit;\r
22     char *buf;\r
23     int buflen, bufsiz, quotenext;\r
24 } *Ldisc;\r
26 #endif /* PUTTY_LDISC_H */\r