[Firebug-cvs] fireboard/beta/fireworks/apps/TestLink LinkMsg.h,1.2,1.3
Brought to you by:
doolin
From: David M. D. <do...@us...> - 2005-07-29 23:55:17
|
Update of /cvsroot/firebug/fireboard/beta/fireworks/apps/TestLink In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29231 Modified Files: LinkMsg.h Log Message: embedded header Index: LinkMsg.h =================================================================== RCS file: /cvsroot/firebug/fireboard/beta/fireworks/apps/TestLink/LinkMsg.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LinkMsg.h 29 Jul 2005 23:53:13 -0000 1.2 --- LinkMsg.h 29 Jul 2005 23:55:09 -0000 1.3 *************** *** 1,8 **** enum { AM_LINKMSG = 200 }; struct LinkMsg { ! uint32_t seqno; uint16_t addr; uint32_t tstamp; --- 1,20 ---- + + + #ifndef FW_HEADER + #define FW_HEADER + typedef struct fw_header { + uint16_t seqno; + uint16_t am_type; + } fw_header; + + + enum { AM_LINKMSG = 200 }; + struct LinkMsg { ! fw_header header; uint16_t addr; uint32_t tstamp; |