chiark / gitweb /
4ccfb7d15da41dd304590e447356f7993816d920
[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.3  2008/02/15 23:52:12  james
16  * *** empty log message ***
17  *
18  * Revision 1.2  2008/02/15 03:32:07  james
19  * *** empty log message ***
20  *
21  * Revision 1.1  2008/02/14 02:46:44  james
22  * *** empty log message ***
23  *
24  * Revision 1.1  2008/02/14 01:55:57  james
25  * *** empty log message ***
26  *
27  */
28
29 #ifndef __KEYDIS_H__
30 #define __KEYDIS_H__
31
32
33 struct Context_struct;
34
35 #define KEYDIS_SIGNATURE \
36         void (*close)(struct KeyDis_struct *); \
37         int (*key)(struct KeyDis_struct *,struct Context_struct *,int key); \
38         int (*set_baud)(struct KeyDis_struct *,struct Context_struct *,int rate); \
39         int (*send_break)(struct KeyDis_struct *,struct Context_struct *); \
40         int (*set_flow)(struct KeyDis_struct *,struct Context_struct *,int flow); \
41         int (*hangup)(struct KeyDis_struct *,struct Context_struct *)
42
43         
44
45 typedef struct KeyDis_struct
46 {
47   KEYDIS_SIGNATURE;
48 } KeyDis;
49
50
51 #endif /* __KEYDIS_H__ */