diff options
author | james <> | 2008-02-03 23:31:25 +0000 |
---|---|---|
committer | james <> | 2008-02-03 23:31:25 +0000 |
commit | 148184f54c08d931007fc31cfd26ac88cc86e493 (patch) | |
tree | 4fcbc6fc7b58aca6bad6365c8526337e327e5a20 /src/ansi.h | |
parent | 4163308ecae26c76d22e4cc80d8bae729b06b94f (diff) | |
download | sympathy-148184f54c08d931007fc31cfd26ac88cc86e493.tar.gz sympathy-148184f54c08d931007fc31cfd26ac88cc86e493.tar.bz2 sympathy-148184f54c08d931007fc31cfd26ac88cc86e493.zip |
*** empty log message ***
Diffstat (limited to 'src/ansi.h')
-rw-r--r-- | src/ansi.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/ansi.h b/src/ansi.h new file mode 100644 index 0000000..b687ac6 --- /dev/null +++ b/src/ansi.h @@ -0,0 +1,38 @@ +/* + * ansi.h: + * + * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>, + * All rights reserved. + * + */ + +/* + * $Id$ + */ + +/* + * $Log$ + * Revision 1.1 2008/02/03 23:31:25 james + * *** empty log message *** + * + */ + +#ifndef __ANSI_H__ +#define __ANSI_H__ + +#define ANSI_INVAL -1 + +typedef struct { +int fd; + +CRT crt; +CRT_Pos pos; +CRT_Pos size; +int hide_cursor; + +int attr; + +} ANSI; + + +#endif /* __ANSI_H__ */ |