FreeCalypso > hg > fc-magnetite
comparison src/aci2/bmi/mmiMidiTest.h @ 120:3c2acfa1a72f
src/aci2/bmi: file renames to make filename case consistent
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 07 Oct 2016 03:46:05 +0000 |
parents | src/aci2/bmi/MmiMidiTest.h@93999a60b835 |
children |
comparison
equal
deleted
inserted
replaced
119:b92a33c204b6 | 120:3c2acfa1a72f |
---|---|
1 #ifndef _MMIMIDITEST_H_ | |
2 #define _MMIMIDITEST_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: MidiTest | |
18 $File: MmiMidiTest.h | |
19 $Revision: 1.0 | |
20 | |
21 $Author: Condat(UK) | |
22 $Date: 18/05/04 | |
23 | |
24 ******************************************************************************** | |
25 | |
26 Description: | |
27 | |
28 This provides the code for testing Riviera Midi driver | |
29 | |
30 ******************************************************************************** | |
31 $History: MmiMidiTest.h | |
32 Apr 05, 2005 REF: ENH 29994 xdeepadh | |
33 Description: Implementation of Generic Midi Ringer and Modification of existing Midi Test Application | |
34 Solution: Generic Midi Ringer and Midi Test Application were implemented. | |
35 | |
36 Dec 08, 2004 REF: CRR MMI-SPR-27284 | |
37 Description: MIDI Player: Back Key malfunctions in MIDI application. | |
38 Solution: A window is created to hold list window. When the user presses Back key, the newly | |
39 created window is deleted along with list window, bringing the control back to Midi options | |
40 screen. | |
41 | |
42 18/05/04 Texas Instruments | |
43 $End | |
44 | |
45 *******************************************************************************/ | |
46 EXTERN int midi_test_cc_file (MfwMnu* m, MfwMnuItem* i); | |
47 EXTERN int midi_test_cc_voice_limit (MfwMnu* m, MfwMnuItem* i); | |
48 EXTERN int midi_test_cc_channels (MfwMnu* m, MfwMnuItem* i); | |
49 EXTERN int midi_test_set_loop_on (MfwMnu* m, MfwMnuItem* i); | |
50 EXTERN int midi_test_set_loop_off (MfwMnu* m, MfwMnuItem* i); | |
51 EXTERN int midi_test_set_channel_mono (MfwMnu* m, MfwMnuItem* i); | |
52 EXTERN int midi_test_set_channel_stereo (MfwMnu* m, MfwMnuItem* i); | |
53 EXTERN int midi_test_play (MfwMnu* m, MfwMnuItem* i); | |
54 EXTERN int midi_test_play_all (MfwMnu* m, MfwMnuItem* i); | |
55 | |
56 // Dec 08, 2004 REF: CRR MMI-SPR-27284 | |
57 // Description: MIDI Player: Back Key malfunctions in MIDI application. | |
58 // Prototype for function midi_test_files_browse() | |
59 EXTERN int midi_test_files_browse (MfwMnu* m, MfwMnuItem* i); | |
60 EXTERN int midi_stop_player (MfwMnu* m, MfwMnuItem* i); | |
61 EXTERN int midi_test_set_speaker (MfwMnu* m, MfwMnuItem* i); | |
62 EXTERN int midi_test_set_headset (MfwMnu* m, MfwMnuItem* i); | |
63 | |
64 /******************************************************************************* | |
65 | |
66 Include files | |
67 | |
68 *******************************************************************************/ | |
69 | |
70 extern USHORT record_position; | |
71 | |
72 | |
73 | |
74 /******************************************************************************* | |
75 | |
76 Interface constants | |
77 | |
78 *******************************************************************************/ | |
79 | |
80 | |
81 | |
82 | |
83 /******************************************************************************* | |
84 | |
85 Public methods | |
86 | |
87 *******************************************************************************/ | |
88 | |
89 /* pretty standard initialise, execute and exit methods | |
90 */ | |
91 | |
92 | |
93 | |
94 /******************************************************************************* | |
95 | |
96 End of File | |
97 | |
98 *******************************************************************************/ | |
99 #endif | |
100 |