2014-07-11 22:12:11 +02:00
|
|
|
#ifndef __CWRMSG_H
|
|
|
|
#define __CWRMSG_H
|
|
|
|
|
|
|
|
struct cwrmsg{
|
|
|
|
int rid;
|
|
|
|
int wbid;
|
|
|
|
uint8_t * msgelems;
|
|
|
|
int msgelems_len;
|
|
|
|
int type;
|
|
|
|
int seqnum;
|
|
|
|
int msglen;
|
2014-07-27 21:56:57 +02:00
|
|
|
//#ifdef WITH_RMAC_SUPPORT
|
2014-07-28 06:57:42 +02:00
|
|
|
uint8_t rmac[8];
|
2014-07-27 21:56:57 +02:00
|
|
|
//#endif
|
2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|