comparison g23m/condat/ms/src/bmi/mmimmsbox.h @ 0:509db1a7b7b8

initial import: leo2moko-r1
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 01 Jun 2015 03:24:05 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:509db1a7b7b8
1 #ifndef _DEF_MMI_MMSBOX_H_
2 #define _DEF_MMI_MMSBOX_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: mmimmsbox.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: mmimmsbox.h
35
36 28/08/03 Original TI(Shanghai) BMI version.
37
38 $End
39
40 *******************************************************************************/
41 #undef GLOBAL_EXT
42 #if defined (MMI_MMSOM_C)
43 #define GLOBAL_EXT
44 #else
45 #define GLOBAL_EXT extern
46 #endif
47
48 /*******************************************************************************
49
50 Include Files
51
52 *******************************************************************************/
53
54 #include "mfw_mfw.h"
55
56
57
58 /*******************************************************************************
59
60 Shared Structure Definitions
61
62 *******************************************************************************/
63
64 // Length = to len("from ") + len(number) + len(sms text) + 4 (for \0 \n and optional ionternational character +)
65 //+possible addition of concatenated status information SPR 1833
66 #define MAX_EDITOR_LEN (5+MFW_NUM_LEN+MAX_MSG_LEN+4+30)
67 //May 16 2005 REF: MMI-SPR-29887 x0012849
68 //Just for Testing the Value is Increase - Please do this at clients side also
69 // Jun 23 2005 REF: MMI-SPR-29887 x0012849
70 //If required to see more no of MMS in INBOX please increase this value
71 #define MAX_MMS_NUMBER 10
72
73
74
75 #define MMS_INSERT_PICTURE 0
76 #define MMS_INSERT_SOUND 1
77
78 /*******************************************************************************
79
80 Function Prototypes
81
82 *******************************************************************************/
83 // Entry points for the different MMS blocs
84 GLOBAL_EXT T_MFW_HND MMSBox_start(T_MFW_HND parent_window, MfwMnuAttr *menuAttr);
85
86
87
88 /*******************************************************************************
89
90 DUMMY DECLARATIONS
91
92 *******************************************************************************/
93
94 //Dummy defines
95
96 // Dummy global variables
97
98
99
100 #endif /* _DEF_MMI_MMSBOX_H_ */
101
102
103
104