FreeCalypso > hg > fc-magnetite
comparison src/aci2/bmi/mmimmsom.h @ 3:93999a60b835
src/aci2, src/condat2: import of g23m/condat source pieces from TCS211
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 26 Sep 2016 00:29:36 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2:c41a534f33c6 | 3:93999a60b835 |
---|---|
1 #ifndef _DEF_MMI_MMSOM_H_ | |
2 #define _DEF_MMI_MMSOM_H_ | |
3 | |
4 | |
5 /******************************************************************************* | |
6 | |
7 TI (Shanghai) | |
8 | |
9 ******************************************************************************** | |
10 | |
11 This software product is the property of TI (Shanghai) Ltd and may not be | |
12 disclosed to any third party without the express permission of the owner. | |
13 | |
14 ******************************************************************************** | |
15 | |
16 $Project name: TISHMMS Project | |
17 $Project code: BMI (6349) | |
18 $Module: MMS | |
19 $File: MmiMMSom.h | |
20 $Revision: 1.0 | |
21 | |
22 $Author: Yan Bin(bin-yan@ti.com) | |
23 $Date: 28/08/03 | |
24 | |
25 ******************************************************************************** | |
26 | |
27 Description: | |
28 | |
29 This module provides definitions of the types and | |
30 constants which are shared across the MMS | |
31 application modules. | |
32 | |
33 ******************************************************************************** | |
34 $History: MmiMMSom.h | |
35 | |
36 xrashmic 7 Dec, 2004 MMI-SPR-23965 | |
37 Description: Not able to extract the objects in EMS message | |
38 Solution: Extract and store the objects in the Object Manager | |
39 | |
40 Bug Id 1 & 9 : 12 Aug, 2004 - xpradipg | |
41 Description:"No Media" displayed instead of Options screen | |
42 Solution: Added the BMI information window instead of writing directly onto the display | |
43 | |
44 28/08/03 Original TI(Shanghai) BMI version. | |
45 | |
46 $End | |
47 | |
48 *******************************************************************************/ | |
49 #undef GLOBAL_EXT | |
50 #if defined (MMI_MMSOM_C) | |
51 #define GLOBAL_EXT | |
52 #else | |
53 #define GLOBAL_EXT extern | |
54 #endif | |
55 | |
56 /******************************************************************************* | |
57 | |
58 Include Files | |
59 | |
60 *******************************************************************************/ | |
61 | |
62 #include "mfw_mfw.h" | |
63 | |
64 | |
65 | |
66 /******************************************************************************* | |
67 | |
68 Shared Structure Definitions | |
69 | |
70 *******************************************************************************/ | |
71 | |
72 // Length = to len("from ") + len(number) + len(sms text) + 4 (for \0 \n and optional ionternational character +) | |
73 //+possible addition of concatenated status information SPR 1833 | |
74 #define MAX_EDITOR_LEN (5+MFW_NUM_LEN+MAX_MSG_LEN+4+30) | |
75 #define MAX_MMS_MEDIA 20 | |
76 | |
77 | |
78 #define MMS_INSERT_PICTURE 0 | |
79 #define MMS_INSERT_SOUND 1 | |
80 #define EMS_INSERT_PICTURE 2 | |
81 #define EMS_INSERT_SOUND 3 | |
82 //xrashmic 7 Dec, 2004 MMI-SPR-23965 | |
83 #define EMS_INSERT_PICTURE_USR 4 | |
84 #define EMS_INSERT_SOUND_USR 5 | |
85 | |
86 | |
87 /******************************************************************************* | |
88 | |
89 Function Prototypes | |
90 | |
91 *******************************************************************************/ | |
92 // Entry points for the different MMS blocs | |
93 GLOBAL_EXT T_MFW_HND MMSom_start(T_MFW_HND parent_window, MfwMnuAttr *menuAttr); | |
94 //callback for the information dialog | |
95 static void No_Media_info_cb(T_MFW_HND win, UBYTE identifier, UBYTE reason); | |
96 | |
97 | |
98 /******************************************************************************* | |
99 | |
100 DUMMY DECLARATIONS | |
101 | |
102 *******************************************************************************/ | |
103 | |
104 //Dummy defines | |
105 | |
106 // Dummy global variables | |
107 | |
108 | |
109 | |
110 #endif /* _DEF_MMI_MMSOM_H_ */ | |
111 | |
112 | |
113 |