OSDN Git Service

Modify documents.
[ffftp/ffftp.git] / contrib / putty / LDISC.H
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
10 \r
11 typedef struct ldisc_tag {\r
12     Terminal *term;\r
13     Backend *back;\r
14     Config *cfg;\r
15     void *backhandle;\r
16     void *frontend;\r
17 \r
18     char *buf;\r
19     int buflen, bufsiz, quotenext;\r
20 } *Ldisc;\r
21 \r
22 #endif /* PUTTY_LDISC_H */\r