chiark / gitweb /
serialmgr: Look for things in /usr, not /usr/local
[sympathy.git] / src / rx.h
1 /* 
2  * rx.h:
3  *
4  * Copyright (c) 2008 James McKenzie <sympathy@madingley.org>,
5  * All rights reserved.
6  *
7  */
8
9 /* 
10  * $Id: rx.h,v 1.5 2008/03/10 11:49:33 james Exp $
11  */
12
13 /* 
14  * $Log: rx.h,v $
15  * Revision 1.5  2008/03/10 11:49:33  james
16  * *** empty log message ***
17  *
18  * Revision 1.4  2008/03/07 12:37:04  james
19  * *** empty log message ***
20  *
21  * Revision 1.3  2008/03/06 16:49:39  james
22  * *** empty log message ***
23  *
24  * Revision 1.2  2008/03/06 16:49:05  james
25  * *** empty log message ***
26  *
27  * Revision 1.1  2008/03/06 15:17:26  james
28  * *** empty log message ***
29  *
30  *
31  */
32
33 #ifndef __RX_H__
34 #define __RX_H__
35 #define RX_SIGNATURE \
36   int (*rx)(struct RX_struct *,int); \
37   void (*close)(struct RX_struct *);
38
39
40 typedef struct RX_struct {
41   RX_SIGNATURE;
42 } RX;
43
44
45 #endif /* __RX_H__ */