chiark / gitweb /
2a5977b973ad7def2834821a7bc6bc41abd11c6d
[sympathy.git] / src / ansi.h
1 /*
2  * ansi.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.2  2008/02/06 11:30:37  james
16  * *** empty log message ***
17  *
18  * Revision 1.1  2008/02/03 23:31:25  james
19  * *** empty log message ***
20  *
21  */
22
23 #ifndef __ANSI_H__
24 #define __ANSI_H__
25
26 #define ANSI_INVAL -1
27
28 typedef struct
29 {
30   int fd;
31
32   CRT crt;
33   CRT_Pos pos;
34   CRT_Pos size;
35   int hide_cursor;
36
37   int attr;
38
39 } ANSI;
40
41
42 #endif /* __ANSI_H__ */