aboutsummaryrefslogtreecommitdiffstats
path: root/src/rx.h
blob: c1c58eab55c3da5a98e8e2fe847e933ca0a79720 (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
/* 
 * rx.h:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

/* 
 * $Id$
 */

/* 
 * $Log$
 * Revision 1.4  2008/03/07 12:37:04  james
 * *** empty log message ***
 *
 * Revision 1.3  2008/03/06 16:49:39  james
 * *** empty log message ***
 *
 * Revision 1.2  2008/03/06 16:49:05  james
 * *** empty log message ***
 *
 * Revision 1.1  2008/03/06 15:17:26  james
 * *** empty log message ***
 *
 *
 */

#ifndef __RX_H__
#define __RX_H__
#define RX_SIGNATURE \
  int (*rx)(struct RX_struct *,int); \
  void (*close)(struct RX_struct *);


typedef struct RX_struct
{
  RX_SIGNATURE;
} RX;


#endif /* __RX_H__ */