]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - ldisc.h
Richard points out that it would probably help if I committed
[PuTTY.git] / ldisc.h
1 /*
2  * ldisc.h: defines the Ldisc data structure used by ldisc.c and
3  * ldiscucs.c. (Unfortunately it was necessary to split the ldisc
4  * module in two, to avoid unnecessarily linking in the Unicode
5  * stuff in tools that don't require it.)
6  */
7
8 #ifndef PUTTY_LDISC_H
9 #define PUTTY_LDISC_H
10
11 typedef struct ldisc_tag {
12     Terminal *term;
13     Backend *back;
14     void *backhandle;
15     void *frontend;
16
17     char *buf;
18     int buflen, bufsiz, quotenext;
19 } *Ldisc;
20
21 #endif /* PUTTY_LDISC_H */