FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/g23m-gsm/ss/ss_csf.c @ 673:2f7df7a314f8
gsm-fw/g23m-gsm subtree: initial import from LoCosto source
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 28 Sep 2014 23:20:04 +0000 |
parents | |
children | 461aad16a816 |
comparison
equal
deleted
inserted
replaced
672:0dc6f9e8e980 | 673:2f7df7a314f8 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | Project : GSM-PS (6147) | |
4 | Modul : SS_CSF | |
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 : This modul defines the functions for the csf | |
18 | capability of the module supplementary services. | |
19 +----------------------------------------------------------------------------- | |
20 */ | |
21 | |
22 #ifndef SS_CSF_C | |
23 #define SS_CSF_C | |
24 | |
25 #define ENTITY_SS | |
26 | |
27 /*==== INCLUDES ===================================================*/ | |
28 #if defined (NEW_FRAME) | |
29 | |
30 #include <string.h> | |
31 #include <stdlib.h> | |
32 #include <stddef.h> | |
33 #include "typedefs.h" | |
34 #include "pcm.h" | |
35 #include "pconst.cdg" | |
36 #include "mconst.cdg" | |
37 #include "message.h" | |
38 #include "ccdapi.h" | |
39 #include "vsi.h" | |
40 #include "custom.h" | |
41 #include "gsm.h" | |
42 #include "prim.h" | |
43 #include "cnf_ss.h" | |
44 #include "mon_ss.h" | |
45 #include "pei.h" | |
46 #include "tok.h" | |
47 #include "ss.h" | |
48 | |
49 #else | |
50 | |
51 #include <string.h> | |
52 #include <stdlib.h> | |
53 #include <stddef.h> | |
54 #include "stddefs.h" | |
55 #include "pcm.h" | |
56 #include "pconst.cdg" | |
57 #include "mconst.cdg" | |
58 #include "message.h" | |
59 #include "ccdapi.h" | |
60 #include "custom.h" | |
61 #include "gsm.h" | |
62 #include "prim.h" | |
63 #include "cnf_ss.h" | |
64 #include "mon_ss.h" | |
65 #include "vsi.h" | |
66 #include "pei.h" | |
67 #include "tok.h" | |
68 #include "ss.h" | |
69 | |
70 #endif | |
71 | |
72 /*==== EXPORT =====================================================*/ | |
73 | |
74 /*==== PRIVAT =====================================================*/ | |
75 | |
76 /*==== VARIABLES ==================================================*/ | |
77 | |
78 /*==== FUNCTIONS ==================================================*/ | |
79 | |
80 /* | |
81 * ------------------------------------------------------------------- | |
82 * Procedures | |
83 * ------------------------------------------------------------------- | |
84 */ | |
85 | |
86 #endif |