versadac  1
versadac - Scalable Recorder Firmware
ENUM_UhhMsg_Cat.h
1 
2 /*
3 Enumerations for Uhh Message Interface
4 $Id: ENUM_UhhMsg_Cat.h 4938 2006-10-10 14:20:18Z martinto $
5 */
6 
7 #ifndef __ENUM_UHHMSG_CAT_H
8 #define __ENUM_UHHMSG_CAT_H
9 
10 /* Message categories - determines where message is directed to
11  (qualified by message 'reference' where appropriate) */
12 
13 enum ENUM_UhhMsg_Cat
14 {
15  ENUM_UhhMsg_Cat_Iface = 0, /* Directed to/from the interface itself */
16  ENUM_UhhMsg_Cat_NavMgr = 1, /* Directed to/from navigation manager */
17  ENUM_UhhMsg_Cat_Nav = 2, /* Directed to/from an individual navigator */
18  ENUM_UhhMsg_Cat_Com = 3 /* Directed to/from the comms layer */
19 };
20 
21 #endif /* __ENUM_UHHMSG_CAT_H */