FreeCalypso > hg > fc-magnetite
comparison src/condat2/com/include/message.h @ 3:93999a60b835
src/aci2, src/condat2: import of g23m/condat source pieces from TCS211
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 26 Sep 2016 00:29:36 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2:c41a534f33c6 | 3:93999a60b835 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | Project : GSM-PS (6147) | |
4 | Modul : MESSAGE | |
5 +----------------------------------------------------------------------------- | |
6 | Copyright 2002 Texas Instruments Berlin, AG | |
7 | All rights reserved. | |
8 | | |
9 | This file is confidential and a trade secret of Texas | |
10 | Instruments Berlin, AG | |
11 | The receipt of or possession of this file does not convey | |
12 | any rights to reproduce or disclose its contents or to | |
13 | manufacture, use, or sell anything it may describe, in | |
14 | whole, or in part, without the specific written consent of | |
15 | Texas Instruments Berlin, AG. | |
16 +----------------------------------------------------------------------------- | |
17 | Purpose : Message Definitions, depending on entity | |
18 +----------------------------------------------------------------------------- | |
19 */ | |
20 | |
21 #ifndef MESSAGE_H | |
22 #define MESSAGE_H | |
23 | |
24 /* | |
25 * Definitions for Message Types | |
26 */ | |
27 #include "mconst.cdg" | |
28 | |
29 /* | |
30 * Define the messages depending on the entity | |
31 */ | |
32 | |
33 #ifdef ENTITY_RR | |
34 | |
35 #define ADD_BSIZE 8 /* additional 8 bits (Skip Indicator/PD) */ | |
36 #include "m_rr.h" | |
37 | |
38 #endif | |
39 | |
40 #ifdef ENTITY_RRLP | |
41 | |
42 #include "m_rrlp_asn1_msg.h" | |
43 | |
44 #endif | |
45 | |
46 #ifdef ENTITY_MM | |
47 | |
48 #include "m_mm.h" | |
49 | |
50 #endif | |
51 | |
52 #ifdef ENTITY_CC | |
53 | |
54 #include "m_cc.h" | |
55 | |
56 #endif | |
57 | |
58 #ifdef ENTITY_SS | |
59 | |
60 #include "m_ss.h" | |
61 | |
62 #endif | |
63 | |
64 #ifdef ENTITY_SMS | |
65 | |
66 #include "m_sms.h" | |
67 | |
68 #endif | |
69 | |
70 #ifdef ENTITY_T30 | |
71 | |
72 #include "m_t30.h" | |
73 | |
74 #endif | |
75 | |
76 #if defined (ENTITY_SMI) || defined (ENTITY_MFW) || defined (ENTITY_ACI) || defined (ENTITY_CST) | |
77 | |
78 #include "m_fac.h" | |
79 #include "m_sat.h" | |
80 #include "m_cc.val" | |
81 #include "m_sms.h" | |
82 | |
83 #endif | |
84 | |
85 | |
86 | |
87 #ifdef ENTITY_SIM | |
88 | |
89 #include "m_sat.h" | |
90 | |
91 #endif /* ENTITY_SIM */ | |
92 | |
93 | |
94 #ifdef ENTITY_GRR | |
95 | |
96 #include "m_grr.h" | |
97 #include "m_rr.h" | |
98 | |
99 #endif | |
100 | |
101 | |
102 #ifdef ENTITY_GRLC | |
103 | |
104 #include "m_grlc.h" | |
105 #include "m_rr.h" | |
106 | |
107 #endif | |
108 | |
109 #ifdef ENTITY_GMM | |
110 | |
111 #include "m_gmm.h" | |
112 #include "m_tst.h" | |
113 | |
114 #endif | |
115 | |
116 #ifdef ENTITY_SM | |
117 | |
118 #include "m_sm.h" | |
119 | |
120 #endif | |
121 | |
122 | |
123 | |
124 #endif | |
125 |