aboutsummaryrefslogtreecommitdiffstats
path: root/src/keydis.h
blob: 66cc586cc9464d699348fa26c4d309742c390430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 * keydis.h:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

/*
 * $Id$
 */

/*
 * $Log$
 * Revision 1.8  2008/03/03 06:04:42  james
 * *** empty log message ***
 *
 * Revision 1.7  2008/03/02 10:37:56  james
 * *** empty log message ***
 *
 * Revision 1.6  2008/02/28 11:27:48  james
 * *** empty log message ***
 *
 * Revision 1.5  2008/02/23 11:48:37  james
 * *** empty log message ***
 *
 * Revision 1.4  2008/02/22 17:07:00  james
 * *** empty log message ***
 *
 * Revision 1.3  2008/02/15 23:52:12  james
 * *** empty log message ***
 *
 * Revision 1.2  2008/02/15 03:32:07  james
 * *** empty log message ***
 *
 * Revision 1.1  2008/02/14 02:46:44  james
 * *** empty log message ***
 *
 * Revision 1.1  2008/02/14 01:55:57  james
 * *** empty log message ***
 *
 */

#ifndef __KEYDIS_H__
#define __KEYDIS_H__


struct Context_struct;

#define KEYDIS_SIGNATURE \
	void (*close)(struct KeyDis_struct *); \
	int (*key)(struct KeyDis_struct *,struct Context_struct *,int key); \
	int (*set_baud)(struct KeyDis_struct *,struct Context_struct *,int rate); \
	int (*send_break)(struct KeyDis_struct *,struct Context_struct *); \
	int (*set_flow)(struct KeyDis_struct *,struct Context_struct *,int flow); \
	int (*set_ansi)(struct KeyDis_struct *,struct Context_struct *,int ansi); \
	int (*hangup)(struct KeyDis_struct *,struct Context_struct *); \
	int (*reset)(struct KeyDis_struct *,struct Context_struct *); \
	int (*set_size)(struct KeyDis_struct *,struct Context_struct *,int width, int height)



typedef struct KeyDis_struct
{
  KEYDIS_SIGNATURE;
} KeyDis;


#endif /* __KEYDIS_H__ */