X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fansi.h;h=61ffff01dc5daa902d123417901e73f6e6148b6e;hb=7e2a4c6ceec2f4a204faf416ca150742f7d5f364;hp=28089875cd0db8648e06324e138375a1c53bba6f;hpb=ab4d1b2e4c884114ecd4cba652ebcc97ef4c1a0d;p=sympathy.git diff --git a/src/ansi.h b/src/ansi.h index 2808987..61ffff0 100644 --- a/src/ansi.h +++ b/src/ansi.h @@ -12,6 +12,18 @@ /* * $Log$ + * Revision 1.13 2008/02/24 00:42:53 james + * *** empty log message *** + * + * Revision 1.12 2008/02/23 11:48:37 james + * *** empty log message *** + * + * Revision 1.11 2008/02/20 20:16:07 james + * *** empty log message *** + * + * Revision 1.10 2008/02/20 19:44:37 james + * @@ + * * Revision 1.9 2008/02/20 19:36:06 james * @@ * @@ -73,15 +85,17 @@ typedef struct ANSI_struct int attr; int color; + int utf8; int history_ptr; + FILE *file; - void (*dispatch)(struct ANSI_struct *,struct Context_struct *); - void (*update)(struct ANSI_struct *,struct Context_struct *); - void (*oneshot)(struct ANSI_struct *,struct CRT_struct *); - void (*reset)(struct ANSI_struct *,struct CRT_struct *); - void (*terminal_reset)(struct ANSI_struct *); - void (*close)(struct ANSI_struct *); + int (*dispatch) (struct ANSI_struct *, struct Context_struct *); + void (*update) (struct ANSI_struct *, struct Context_struct *); + void (*one_shot) (struct ANSI_struct *, struct CRT_struct *); + void (*reset) (struct ANSI_struct *, struct CRT_struct *); + void (*terminal_reset) (struct ANSI_struct *); + void (*close) (struct ANSI_struct *); } ANSI;