/* * rx.h: * * Copyright (c) 2008 James McKenzie , * All rights reserved. * */ /* * $Id$ */ /* * $Log$ * Revision 1.1 2008/03/06 15:17:26 james * *** empty log message *** * * */ #ifndef __RX_H__ #define __RX_H__ typedef struct RX_struct { void (*rx)(struct RX_struct *,int); } RX; #endif /* __RX_H__ */