mbgtools-lx  4.2.8
qsdefs.h
Go to the documentation of this file.
1 
2 /**************************************************************************
3  *
4  * $Id: qsdefs.h 1.1 2002/02/19 13:46:20 MARTIN REL_M $
5  *
6  * Copyright (c) Meinberg Funkuhren, Bad Pyrmont, Germany
7  *
8  * Description:
9  * Definitions used with the Meinberg Quality Management System.
10  *
11  * -----------------------------------------------------------------------
12  * $Log: qsdefs.h $
13  * Revision 1.1 2002/02/19 13:46:20 MARTIN
14  * Initial revision
15  *
16  **************************************************************************/
17 
18 #ifndef _QSDEFS_H
19 #define _QSDEFS_H
20 
21 
22 /* Other headers to be included */
23 
24 /* Start of header body */
25 
26 // The fixed length of the group code string:
27 #define MBG_GRP_CODE_LEN 4
28 
29 // The mem size required to store a group code string
30 // including terminating 0:
31 #define MBG_GRP_CODE_SIZE ( MBG_GRP_CODE_LEN + 1 )
32 
33 // A data type used to store a group code string:
35 
36 
37 // The length of the serial number:
38 #define MBG_SERNUM_LEN 8
39 
40 // The length of the group code + serial number:
41 #define MBG_GRP_SERNUM_LEN ( MBG_GRP_CODE_LEN + MBG_SERNUM_LEN )
42 
43 
44 /* End of header body */
45 
46 #endif /* _QSDEFS_H */
char MBG_GRP_CODE[(4+1)]
Definition: qsdefs.h:34
#define MBG_GRP_CODE_SIZE
Definition: qsdefs.h:31