aboutsummaryrefslogtreecommitdiffstats
path: root/src/prototypes.h
diff options
context:
space:
mode:
authorjames <>2008-02-13 01:08:38 +0000
committerjames <>2008-02-13 01:08:38 +0000
commit4d50b220e63c52d412bacebb3e44cc712f2e2804 (patch)
tree57633a5a842ffa00f75ba96c19e653be3fb6bde6 /src/prototypes.h
parent8688a9519c349b6ee8664be6ce2897a59c0f52be (diff)
downloadsympathy-4d50b220e63c52d412bacebb3e44cc712f2e2804.tar.gz
sympathy-4d50b220e63c52d412bacebb3e44cc712f2e2804.tar.bz2
sympathy-4d50b220e63c52d412bacebb3e44cc712f2e2804.zip
*** empty log message ***
Diffstat (limited to 'src/prototypes.h')
-rw-r--r--src/prototypes.h20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/prototypes.h b/src/prototypes.h
index 8468fb6..17027e1 100644
--- a/src/prototypes.h
+++ b/src/prototypes.h
@@ -1,7 +1,4 @@
/* ansi.c */
-int ansi_read(ANSI *a, void *buf, int n);
-void ansi_write(ANSI *a, char *buf, int n);
-void ansi_getsize(ANSI *a);
void ansi_move(ANSI *a, CRT_Pos p);
void ansi_showhide_cursor(ANSI *a, int hide);
void ansi_force_attr_normal(ANSI *a);
@@ -14,14 +11,14 @@ void ansi_spot_scroll_up(ANSI *a, CRT *c);
void ansi_spot_scroll(ANSI *a, CRT *c);
void ansi_draw(ANSI *a, CRT *c);
void ansi_reset(ANSI *a);
-void ansi_flush_escape(ANSI *a, VT102 *v, TTY *t);
-void ansi_parse_deckey(ANSI *a, VT102 *v, TTY *t);
-void ansi_parse_ansikey(ANSI *a, VT102 *v, TTY *t);
-void ansi_parse_escape(ANSI *a, VT102 *v, TTY *t);
-void ansi_check_escape(ANSI *a, VT102 *v, TTY *t);
-void ansi_parse_char(ANSI *a, int c, VT102 *v, TTY *t);
-void ansi_parse(ANSI *a, char *buf, int len, VT102 *v, TTY *t);
-int ansi_dispatch(ANSI *a, VT102 *v, TTY *t);
+void ansi_flush_escape(ANSI *a, Context *c);
+void ansi_parse_deckey(ANSI *a, Context *c);
+void ansi_parse_ansikey(ANSI *a, Context *c);
+void ansi_parse_escape(ANSI *a, Context *c);
+void ansi_check_escape(ANSI *a, Context *c);
+void ansi_parse_char(ANSI *a, Context *c, int ch);
+void ansi_parse(ANSI *a, Context *c, char *buf, int len);
+int ansi_dispatch(ANSI *a, Context *c);
/* crt.c */
void crt_erase(CRT *c, CRT_Pos s, CRT_Pos e, int ea);
void crt_cls(CRT *c);
@@ -83,5 +80,4 @@ int ring_read(Ring *r, void *b, int n);
int ring_write(Ring *r, void *b, int n);
Ring *ring_new(int n);
/* ptty.c */
-void ptty_close(TTY *_t);
TTY *ptty_open(char *path, char *argv[]);