chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / keydis.h
1 /*
2  * keydis.h:
3  *
4  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
5  * All rights reserved.
6  *
7  */
8
9 /*
10  * $Id$
11  */
12
13 /*
14  * $Log$
15  * Revision 1.2  2008/02/15 03:32:07  james
16  * *** empty log message ***
17  *
18  * Revision 1.1  2008/02/14 02:46:44  james
19  * *** empty log message ***
20  *
21  * Revision 1.1  2008/02/14 01:55:57  james
22  * *** empty log message ***
23  *
24  */
25
26 #ifndef __KEYDIS_H__
27 #define __KEYDIS_H__
28
29
30 struct Context_struct;
31
32 #define KEYDIS_SIGNATURE \
33         void (*close)(struct KeyDis_struct *); \
34         int (*key)(struct KeyDis_struct *,struct Context_struct *,int key); \
35         int (*set_baud)(struct KeyDis_struct *,struct Context_struct *,int rate); \
36         int (*send_break)(struct KeyDis_struct *,struct Context_struct *); \
37         int (*set_flow)(struct KeyDis_struct *,struct Context_struct *,int flow)
38
39         
40
41 typedef struct KeyDis_struct
42 {
43   KEYDIS_SIGNATURE;
44 } KeyDis;
45
46
47 #endif /* __KEYDIS_H__ */