aboutsummaryrefslogtreecommitdiffstats
path: root/src/prototypes.h
diff options
context:
space:
mode:
authorjames <>2008-02-04 20:23:55 +0000
committerjames <>2008-02-04 20:23:55 +0000
commit28a52b2df7761bd97d74938d582b1f678d23c756 (patch)
tree731cb3fc7bfe081dd49264142def881b0adf2776 /src/prototypes.h
parenta1b65048ff1a96b50d30d327c969e10b77856499 (diff)
downloadsympathy-28a52b2df7761bd97d74938d582b1f678d23c756.tar.gz
sympathy-28a52b2df7761bd97d74938d582b1f678d23c756.tar.bz2
sympathy-28a52b2df7761bd97d74938d582b1f678d23c756.zip
*** empty log message ***
Diffstat (limited to 'src/prototypes.h')
-rw-r--r--src/prototypes.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/prototypes.h b/src/prototypes.h
index e69de29..67e3aaf 100644
--- a/src/prototypes.h
+++ b/src/prototypes.h
@@ -0,0 +1,39 @@
+/* ansi.c */
+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);
+void ansi_set_attr(ANSI *a, int attr);
+void ansi_render(ANSI *a, CRT_CA ca);
+void ansi_cls(ANSI *a);
+void ansi_draw(ANSI *a, CRT *c);
+void ansi_reset(ANSI *a);
+/* crt.c */
+void crt_erase(CRT *c, CRT_Pos s, CRT_Pos e, int ea);
+void crt_cls(CRT *c);
+void crt_scroll_up(CRT *c, CRT_Pos s, CRT_Pos e, int ea);
+void crt_scroll_down(CRT *c, CRT_Pos s, CRT_Pos e, int ea);
+void crt_reset(CRT *c);
+void crt_insert(CRT *c, CRT_CA ca);
+/* html.c */
+void html_entity(FILE *f, int c);
+void html_render(FILE *f, CRT_CA c);
+void html_draw(FILE *f, CRT *c);
+/* libsympathy.c */
+struct termios old;
+void testy(void);
+/* render.c */
+/* testtty.c */
+int open_fd_to_bash(void);
+/* version.c */
+/* vt102.c */
+void vt102_cursor_normalize(VT102 *v, int do_wrapscroll, int use_margins);
+void vt102_cursor_motion(VT102 *v, int x, int y, int wrapscroll);
+void vt102_delete_from_line(VT102 *v, CRT_Pos p);
+void vt102_parse_esc(VT102 *v, int c);
+void vt102_parse_csi(VT102 *v, char *buf, int len);
+void vt102_status_line(VT102 *v, char *str);
+void vt102_parse_char(VT102 *v, int c);
+void vt102_parser_reset(VT102_parser *p);
+void vt102_reset(VT102 *v);