chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / tty.h
1 /*
2  * tty.h:
3  *
4  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
5  * All rights reserved.
6  *
7  */
8
9 /*
10  * $Id$
11  */
12
13 /*
14  * $Log$
15  * Revision 1.9  2008/02/22 19:12:05  james
16  * *** empty log message ***
17  *
18  * Revision 1.8  2008/02/15 23:52:12  james
19  * *** empty log message ***
20  *
21  * Revision 1.7  2008/02/14 10:36:18  james
22  * *** empty log message ***
23  *
24  * Revision 1.6  2008/02/14 10:34:30  james
25  * *** empty log message ***
26  *
27  * Revision 1.5  2008/02/13 09:12:21  james
28  * *** empty log message ***
29  *
30  * Revision 1.4  2008/02/13 01:08:18  james
31  * *** empty log message ***
32  *
33  * Revision 1.3  2008/02/09 15:47:28  james
34  * *** empty log message ***
35  *
36  * Revision 1.2  2008/02/07 00:43:27  james
37  * *** empty log message ***
38  *
39  * Revision 1.1  2008/02/06 20:26:58  james
40  * *** empty log message ***
41  *
42  */
43
44 #ifndef __TTY_H__
45 #define __TTY_H__
46
47
48 #define SYM_CHAR_RESET  (-1)
49
50 #define TTY_SIGNATURE \
51         char name[1024]; \
52         int blocked; \
53         CRT_Pos size; \
54         void (*close)(struct TTY_struct *); \
55         int (*recv)(struct TTY_struct *,void *buf,int len); \
56         int (*xmit)(struct TTY_struct *,void *buf,int len); \
57         int rfd; \
58         int wfd; \
59         int hanging_up; \
60         struct timeval hangup_clock
61
62 typedef struct TTY_struct
63 {
64   TTY_SIGNATURE;
65 } TTY;
66
67 typedef struct {
68   int lines;
69   int blocked;
70   struct termios termios;
71   int baud;
72 } TTY_Status;
73
74 #endif /* __TTY_H__ */