chiark
/
gitweb
/
~ianmdlvl
/
sympathy.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
*** empty log message ***
[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.1 2008/02/03 23:31:25 james
16
* *** empty log message ***
17
*
18
*/
19
20
#ifndef __ANSI_H__
21
#define __ANSI_H__
22
23
#define ANSI_INVAL -1
24
25
typedef struct {
26
int fd;
27
28
CRT crt;
29
CRT_Pos pos;
30
CRT_Pos size;
31
int hide_cursor;
32
33
int attr;
34
35
} ANSI;
36
37
38
#endif /* __ANSI_H__ */