FreeCalypso > hg > fc-tourmaline
comparison src/ui/bmi/mmiAoc.h @ 3:67bfe9f274f6
src/ui: import of src/ui3 from Magnetite
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 16 Oct 2020 06:33:10 +0000 |
parents | |
children | c0052fe355d3 |
comparison
equal
deleted
inserted
replaced
2:3a14ee9a9843 | 3:67bfe9f274f6 |
---|---|
1 #ifndef _MMIAOC_H_ | |
2 #define _MMIAOC_H_ 1 | |
3 | |
4 /******************************************************************************* | |
5 | |
6 CONDAT (UK) | |
7 | |
8 ******************************************************************************** | |
9 | |
10 This software product is the property of Condat (UK) Ltd and may not be | |
11 disclosed to any third party without the express permission of the owner. | |
12 | |
13 ******************************************************************************** | |
14 | |
15 $Project name: Basic MMI | |
16 $Project code: BMI (6349) | |
17 $Module: Advice of Charge | |
18 $File: MmiAoc.h | |
19 $Revision: 1.0 | |
20 | |
21 $Author: Condat(UK) | |
22 $Date: 25/10/00 | |
23 | |
24 ******************************************************************************** | |
25 | |
26 Description: | |
27 | |
28 This provides the start code for the MMI | |
29 | |
30 ******************************************************************************** | |
31 $History: MmiAoc.h | |
32 | |
33 May 26, 2006 ER: OMAPS00079607 x0012849 :Jagannatha M | |
34 Description: CPHS: Display 'charge/Timers' menu based on AOC ( Advice of charge ) | |
35 | |
36 25/10/00 Original Condat(UK) BMI version. | |
37 | |
38 $End | |
39 | |
40 *******************************************************************************/ | |
41 | |
42 | |
43 | |
44 | |
45 /******************************************************************************* | |
46 | |
47 Include files | |
48 | |
49 *******************************************************************************/ | |
50 | |
51 | |
52 | |
53 | |
54 | |
55 | |
56 /******************************************************************************* | |
57 | |
58 Interface constants | |
59 | |
60 *******************************************************************************/ | |
61 | |
62 | |
63 | |
64 | |
65 /******************************************************************************* | |
66 | |
67 Public methods | |
68 | |
69 *******************************************************************************/ | |
70 int aoc_credit_remaining (MfwMnu* m, MfwMnuItem* i); | |
71 int aoc_charge_rate (MfwMnu* m, MfwMnuItem* i); | |
72 int aoc_view_limit (MfwMnu* m, MfwMnuItem* i); | |
73 int aoc_change_limit (MfwMnu* m, MfwMnuItem* i); | |
74 int aoc_cancel_limit (MfwMnu* m, MfwMnuItem* i); | |
75 int aoc_last_charge (MfwMnu* m, MfwMnuItem* i); | |
76 int aoc_total_charge (MfwMnu* m, MfwMnuItem* i); | |
77 int aoc_reset_charge (MfwMnu* m, MfwMnuItem* i); | |
78 | |
79 USHORT service_check_aoc (struct MfwMnuTag *m, struct MfwMnuAttrTag *ma, struct MfwMnuItemTag *mi); | |
80 | |
81 //x0012849: Jagannatha 26 May, 2006 ER: OMAPS00079607 -Support AOC in CPHS | |
82 #ifdef FF_CPHS | |
83 void setAOCflag(int aocValue); | |
84 int getAOCflag(void); | |
85 #endif | |
86 EXTERN LONG acm_last_call; //accumulated call meter from the last call | |
87 | |
88 /******************************************************************************* | |
89 | |
90 End of File | |
91 | |
92 *******************************************************************************/ | |
93 | |
94 #endif | |
95 |