comparison src/ui/bmi/mmiVoiceMemo.h @ 92:c0052fe355d3

src/ui/bmi/*.[ch]: rm trailing white space
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 08 Nov 2020 06:39:16 +0000
parents 67bfe9f274f6
children 56a53485ce63
comparison
equal deleted inserted replaced
91:c3d28a37caad 92:c0052fe355d3
3 3
4 /******************************************************************************* 4 /*******************************************************************************
5 5
6 CONDAT (UK) 6 CONDAT (UK)
7 7
8 ******************************************************************************** 8 ********************************************************************************
9 9
10 This software product is the property of Condat (UK) Ltd and may not be 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. 11 disclosed to any third party without the express permission of the owner.
12 12
13 ******************************************************************************** 13 ********************************************************************************
14 14
15 $Project name: Basic MMI 15 $Project name: Basic MMI
16 $Project code: BMI (6349) 16 $Project code: BMI (6349)
17 $Module: VoiceMemo 17 $Module: VoiceMemo
18 $File: MmiVoiceMemo.h 18 $File: MmiVoiceMemo.h
19 $Revision: 1.0 19 $Revision: 1.0
20 20
21 $Author: Condat(UK) 21 $Author: Condat(UK)
22 $Date: 25/10/00 22 $Date: 25/10/00
23 23
24 ******************************************************************************** 24 ********************************************************************************
25 25
26 Description: 26 Description:
27 27
28 This provides the start code for the MMI 28 This provides the start code for the MMI
29 29
30 ******************************************************************************** 30 ********************************************************************************
31 $History: MmiVoiceMemo.h 31 $History: MmiVoiceMemo.h
32 32
33 Mar 15, 2006 ER: OMAPS00067709 x0pleela 33 Mar 15, 2006 ER: OMAPS00067709 x0pleela
34 Description: Voice Buffering implementation on C+ for PTT via PCM API 34 Description: Voice Buffering implementation on C+ for PTT via PCM API
35 Solution: Added prototypes of functions pcm_voice_memo_play, pcm_voice_memo_record, 35 Solution: Added prototypes of functions pcm_voice_memo_play, pcm_voice_memo_record,
36 voice_buffering_edit_num, voice_buffering_record_start, voice_buffering_record_stop, 36 voice_buffering_edit_num, voice_buffering_record_start, voice_buffering_record_stop,
37 voice_buffering_playback_start 37 voice_buffering_playback_start
38 38
39 Feb 24, 2006 ER: OMAPS00067709 x0pleela 39 Feb 24, 2006 ER: OMAPS00067709 x0pleela
40 Description: Voice Buffering implementation on C+ for PTT via PCM API 40 Description: Voice Buffering implementation on C+ for PTT via PCM API
41 Solution: Added prototypes of the functions to support PCM Voice memo feature 41 Solution: Added prototypes of the functions to support PCM Voice memo feature
42 42
43 $End 43 $End
44 44
45 *******************************************************************************/ 45 *******************************************************************************/
46 EXTERN void voice_memo_init (void); 46 EXTERN void voice_memo_init (void);
47 EXTERN int voice_memo_play (MfwMnu* m, MfwMnuItem* i); 47 EXTERN int voice_memo_play (MfwMnu* m, MfwMnuItem* i);
55 EXTERN int voice_buffering_record_stop (MfwMnu* m, MfwMnuItem* i); 55 EXTERN int voice_buffering_record_stop (MfwMnu* m, MfwMnuItem* i);
56 EXTERN int PCM_voice_memo_storeage (MfwMnu* m, MfwMnuItem* i); 56 EXTERN int PCM_voice_memo_storeage (MfwMnu* m, MfwMnuItem* i);
57 EXTERN int voice_buffer_storeage (MfwMnu* m, MfwMnuItem* i); 57 EXTERN int voice_buffer_storeage (MfwMnu* m, MfwMnuItem* i);
58 #endif 58 #endif
59 //x0pleela 24 Feb, 2006 ER OMAPS00067709 59 //x0pleela 24 Feb, 2006 ER OMAPS00067709
60 #ifdef FF_PCM_VM_VB 60 #ifdef FF_PCM_VM_VB
61 EXTERN int pcm_voice_memo_play (MfwMnu* m, MfwMnuItem* i); 61 EXTERN int pcm_voice_memo_play (MfwMnu* m, MfwMnuItem* i);
62 EXTERN int pcm_voice_memo_record (MfwMnu* m, MfwMnuItem* i); 62 EXTERN int pcm_voice_memo_record (MfwMnu* m, MfwMnuItem* i);
63 63
64 //x0pleela 09 Mar, 2006 ER: OMAPS00067709 64 //x0pleela 09 Mar, 2006 ER: OMAPS00067709
65 //Prototypes of functions supporting voice buffering 65 //Prototypes of functions supporting voice buffering
68 EXTERN int voice_buffering_record_stop (MfwMnu* m, MfwMnuItem* i); 68 EXTERN int voice_buffering_record_stop (MfwMnu* m, MfwMnuItem* i);
69 EXTERN void voice_buffering_playback_start(void ); 69 EXTERN void voice_buffering_playback_start(void );
70 #endif 70 #endif
71 71
72 /******************************************************************************* 72 /*******************************************************************************
73 73
74 Include files 74 Include files
75 75
76 *******************************************************************************/ 76 *******************************************************************************/
77 77
78 extern USHORT record_position; 78 extern USHORT record_position;
79 79
80 80
81 81
82 82
83 /******************************************************************************* 83 /*******************************************************************************
84 84
85 Interface constants 85 Interface constants
86 86
87 *******************************************************************************/ 87 *******************************************************************************/
88 88
89 89
90 90
91 91
92 /******************************************************************************* 92 /*******************************************************************************
93 93
94 Public methods 94 Public methods
95 95
96 *******************************************************************************/ 96 *******************************************************************************/
97 97
98 /* pretty standard initialise, execute and exit methods 98 /* pretty standard initialise, execute and exit methods
99 */ 99 */
100 100
101 101
102 102
103 /******************************************************************************* 103 /*******************************************************************************
104 104
105 End of File 105 End of File
106 106
107 *******************************************************************************/ 107 *******************************************************************************/
108 108
109 #endif 109 #endif
110 110