FreeCalypso > hg > fc-magnetite
comparison src/aci2/bmi/mmimmscreate.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_MMSCREATE_H_ | |
2 #define _DEF_MMI_MMSCREATE_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: MmiMMSCreate.h | |
20 $Revision: 1.0 | |
21 | |
22 $Author: Yan Bin(bin-yan@ti.com) | |
23 $Date: 26/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: MmiMMSCreate.h | |
35 | |
36 x0012849:Feb 03 2005 MMI-SPR-28224 | |
37 To allow user to enter more no of characters while creating MMS. | |
38 | |
39 26/08/03 Original TI(Shanghai) BMI version. | |
40 | |
41 $End | |
42 | |
43 *******************************************************************************/ | |
44 | |
45 /******************************************************************************* | |
46 | |
47 Include Files | |
48 | |
49 *******************************************************************************/ | |
50 | |
51 #include "mfw_mfw.h" | |
52 | |
53 /******************************************************************************* | |
54 | |
55 Shared Structure Definitions | |
56 | |
57 *******************************************************************************/ | |
58 | |
59 #define MENU_TEXT_LENGTH 16 //TBD: to include in common .h | |
60 #define MENU_HEADER_LENGTH MENU_TEXT_LENGTH - 4 //TBD: to include in common .h | |
61 //x0012849 Feb-03-2005 MMI-SPR-28224 : | |
62 //To allow more characters to be entered while creating MMS . | |
63 #define MAX_MMS_TEXT_LEN 100 // was 32 | |
64 #define MAX_MMS_TOPIC_LEN 16 | |
65 | |
66 | |
67 | |
68 /******************************************************************************* | |
69 | |
70 Function Prototypes | |
71 | |
72 *******************************************************************************/ | |
73 | |
74 T_MFW_HND MMSCreate_start(T_MFW_HND parent_window, MfwMnuAttr *menuAttr); | |
75 T_MFW_HND MMSInbox_start(T_MFW_HND parent_window, MfwMnuAttr *data); | |
76 T_MFW_HND MMSOutbox_start(T_MFW_HND parent_window, MfwMnuAttr *data); | |
77 T_MFW_HND MMSSettings_start(T_MFW_HND parent_window, MfwMnuAttr *menuAttr); | |
78 //xrashmic 14 Dec, 2004 MMI-SPR-23921 | |
79 T_MFW_HND MMSFwd_start(); | |
80 /******************************************************************************* | |
81 | |
82 DUMMY DECLARATIONS | |
83 | |
84 *******************************************************************************/ | |
85 | |
86 //Dummy defines | |
87 | |
88 // Dummy global variables | |
89 | |
90 | |
91 | |
92 #endif /* _DEF_MMI_MMSCREATE_H_ */ | |
93 |