FreeCalypso > hg > fc-tourmaline
comparison src/ui/mfw/mfw_BtipsOppc.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 |
comparison
equal
deleted
inserted
replaced
2:3a14ee9a9843 | 3:67bfe9f274f6 |
---|---|
1 #ifndef DEF_MFW_BTIPS_OPPC_H | |
2 #define DEF_MFW_BTIPS_OPPC_H | |
3 /* ========================================================= | |
4 * Texas Instruments OMAP(TM) Platform Software | |
5 * (c) Copyright Texas Instruments, Incorporated. All Rights Reserved. | |
6 * | |
7 * Use of this software is controlled by the terms and conditions found | |
8 * in the license agreement under which this software has been supplied. | |
9 * ========================================================== */ | |
10 /* | |
11 $Project name: Basic Bluetooth MMI | |
12 $Project code: | |
13 $Module: Bluetooth BMG MFW | |
14 $File: Mfw_BtipsA2dp.h | |
15 $Revision: 1.0 | |
16 $Author: Texas Instruments | |
17 $Date: 26/06/07 | |
18 | |
19 ******************************************************************************** | |
20 | |
21 Description: | |
22 | |
23 This module provides the BTIPS A2DP APPlication functionality. | |
24 | |
25 ******************************************************************************** | |
26 $History: Mfw_BtipsA2dp.h | |
27 | |
28 26/06/07 Sasken original version | |
29 | |
30 $End | |
31 | |
32 *******************************************************************************/ | |
33 | |
34 /* Maximum files to be displayed in the MMI */ | |
35 #define OPPC_MAX_FILES 10 | |
36 //Number of files in content directory. | |
37 | |
38 | |
39 /*Function Declarations*/ | |
40 int mfw_btips_oppcPopulateFiles(char **file_names, int max_files_count, | |
41 char* dir_name_p); | |
42 | |
43 void mfw_btips_oppcUnpopulateFiles(char **file_names); | |
44 char *mfw_btips_oppcGetExtension(char *src); | |
45 int mfw_btips_oppcGetNumFiles(void); | |
46 char* mfw_btips_oppcGetFileName(UBYTE index); | |
47 BOOL mfw_btips_oppcGetConnectedDevice (BD_ADDR *bdAddr, U8 *name); | |
48 void mfw_btips_oppc_Disconnect(void); | |
49 | |
50 | |
51 #endif | |
52 | |
53 |