Richard points out that it would probably help if I committed
[u/mdw/putty] / ldisc.h
CommitLineData
a4f046e1 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
11typedef 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 */