diff options
Diffstat (limited to 'src/ansi.h')
-rw-r--r-- | src/ansi.h | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -12,6 +12,9 @@ /* * $Log$ + * Revision 1.2 2008/02/06 11:30:37 james + * *** empty log message *** + * * Revision 1.1 2008/02/03 23:31:25 james * *** empty log message *** * @@ -22,15 +25,16 @@ #define ANSI_INVAL -1 -typedef struct { -int fd; +typedef struct +{ + int fd; -CRT crt; -CRT_Pos pos; -CRT_Pos size; -int hide_cursor; + CRT crt; + CRT_Pos pos; + CRT_Pos size; + int hide_cursor; -int attr; + int attr; } ANSI; |