FreeCalypso > hg > fc-magnetite
comparison src/ui3/bmi/mmiTimers.h @ 421:6a4d9f47793e
src/ui3/bmi: file renames to make the case consistent
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 21 Jan 2018 03:28:53 +0000 |
parents | src/ui3/bmi/MmiTimers.h@e8ddbb0837ed |
children |
comparison
equal
deleted
inserted
replaced
420:e8ddbb0837ed | 421:6a4d9f47793e |
---|---|
1 #ifndef _DEF_MMI_TIMERS_H_ | |
2 #define _DEF_MMI_TIMERS_H_ | |
3 /******************************************************************************* | |
4 | |
5 CONDAT (UK) | |
6 | |
7 ******************************************************************************** | |
8 | |
9 This software product is the property of Condat (UK) Ltd and may not be | |
10 disclosed to any third party without the express permission of the owner. | |
11 | |
12 ******************************************************************************** | |
13 | |
14 $Project name: Basic MMI | |
15 $Project code: BMI (6349) | |
16 $Module: MMI | |
17 $File: MmiTimers.h | |
18 $Revision: 1.0 | |
19 | |
20 $Author: Condat(UK) | |
21 $Date: 25/10/00 | |
22 | |
23 ******************************************************************************** | |
24 | |
25 Description: | |
26 | |
27 This handles the storage of call times. | |
28 | |
29 ******************************************************************************** | |
30 $History: MmiTimers.h | |
31 | |
32 | |
33 | |
34 $End | |
35 | |
36 *******************************************************************************/ | |
37 #include "MmiBookShared.h" | |
38 | |
39 typedef enum | |
40 { | |
41 LAST_CALL, | |
42 OUTGOING_CALLS, | |
43 INCOMING_CALLS | |
44 } timer_types; | |
45 | |
46 /*SPR 2142 removed timer window data structure*/ | |
47 | |
48 | |
49 void setLastCallDuration(long call_time, T_MFW_CM_CALL_DIR call_direction); | |
50 int timerLastCall(MfwMnu* m, MfwMnuItem* i); | |
51 int timerIncomingCalls(MfwMnu* m, MfwMnuItem* i); | |
52 int timerOutgoingCalls(MfwMnu* m, MfwMnuItem* i); | |
53 void resetIncomingCallsDuration( void ); | |
54 void resetOutgoingCallsDuration( void ); | |
55 | |
56 #endif |