aboutsummaryrefslogtreecommitdiffstats
path: root/src/prototypes.h
diff options
context:
space:
mode:
authorjames <>2008-02-14 02:46:45 +0000
committerjames <>2008-02-14 02:46:45 +0000
commitbc6a29d06c22bdcada4cb18d8401e5d37f46fd36 (patch)
treecbe671b5cad8d7af21450915e2e312119ef0406d /src/prototypes.h
parente65130e63d050d37b9605339c0abfdcef73c4472 (diff)
downloadsympathy-bc6a29d06c22bdcada4cb18d8401e5d37f46fd36.tar.gz
sympathy-bc6a29d06c22bdcada4cb18d8401e5d37f46fd36.tar.bz2
sympathy-bc6a29d06c22bdcada4cb18d8401e5d37f46fd36.zip
*** empty log message ***
Diffstat (limited to 'src/prototypes.h')
-rw-r--r--src/prototypes.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/prototypes.h b/src/prototypes.h
index dc88c14..28cffac 100644
--- a/src/prototypes.h
+++ b/src/prototypes.h
@@ -73,6 +73,9 @@ extern VT102 *vt102_new(void);
extern void vt102_free(VT102 *v);
/* tty.c */
extern void tty_pre_select(TTY *t, fd_set *rfds, fd_set *wfds);
+/* keydis.c */
+extern KeyDis *keydis_vt102_new(Context *c);
+extern KeyDis *keydis_ipc_new(Socket *s);
/* history.c */
extern History *history_new(int n);
extern void history_free(History *h);
@@ -107,6 +110,9 @@ extern void ipc_consume_message_in_slide(Slide *s);
extern int ipc_msg_send(Socket *s, IPC_Msg *m);
extern int ipc_msg_send_debug(Socket *s, char *msg);
extern int ipc_msg_send_history(Socket *s, History_ent *l);
+extern int ipc_msg_send_vt102(Socket *s, VT102 *v);
+extern int ipc_msg_send_key(Socket *s, int key);
+extern int ipc_msg_send_term(Socket *s, void *buf, int len);
/* slide.c */
extern void slide_free(Slide *s);
extern void slide_consume(Slide *s, int n);