FreeCalypso > hg > freecalypso-sw
annotate gsm-fw/g23m-aci/aci/version_dummy.c @ 833:ea87417752f9
gsm-fw/g23m-glue/cst/cst.h: basic preen
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Thu, 23 Apr 2015 06:51:13 +0000 |
parents | 02c65d76881f |
children |
rev | line source |
---|---|
827
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
1 char *aci_version() |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
2 { |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
3 return "ACI version is FreeCalypso"; |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
4 } |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
5 |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
6 char *alr_version() |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
7 { |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
8 return "ALR version is FreeCalypso"; |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
9 } |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
10 |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
11 char *cc_version() |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
12 { |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
13 return "CC version is FreeCalypso"; |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
14 } |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
15 |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
16 char *dl_version() |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
17 { |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
18 return "DL version is FreeCalypso"; |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
19 } |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
20 |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
21 char *mm_version() |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
22 { |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
23 return "MM version is FreeCalypso"; |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
24 } |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
25 |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
26 char *rr_version() |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
27 { |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
28 return "RR version is FreeCalypso"; |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
29 } |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
30 |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
31 char *sim_version() |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
32 { |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
33 return "SIM version is FreeCalypso"; |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
34 } |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
35 |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
36 char *sms_version() |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
37 { |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
38 return "SMS version is FreeCalypso"; |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
39 } |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
40 |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
41 char *ss_version() |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
42 { |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
43 return "SS version is FreeCalypso"; |
02c65d76881f
progress toward gsm-fw build with PS: dummy xxx_version() functions added
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
44 } |