FreeCalypso > hg > fc-tourmaline
comparison src/ui/mfw/mfw_cb.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 | 92abb46dc1ba |
comparison
equal
deleted
inserted
replaced
| 2:3a14ee9a9843 | 3:67bfe9f274f6 |
|---|---|
| 1 /* | |
| 2 +--------------------------------------------------------------------+ | |
| 3 | PROJECT: GSM-MFW (?) $Workfile:: mfw_cb.h $| | |
| 4 | $Author:: Es $Revision:: 1 $| | |
| 5 | CREATED: 14.10.98 $Modtime:: 27.10.98 17:32 $| | |
| 6 | STATE : code | | |
| 7 +--------------------------------------------------------------------+ | |
| 8 | |
| 9 PURPOSE : Types definitions for MMI framework call backs distribution | |
| 10 | |
| 11 $History:: mfw_cm.h $ | |
| 12 | |
| 13 May 10, 2006 REF: DRT OMAPS00075829 xdeepadh | |
| 14 Description: Submission of ACI and SAP changes for Imaging ERs | |
| 15 Solution: Using the mechanism where MFW can receive primitives without | |
| 16 ACI to know about it. | |
| 17 | |
| 18 x0018858 24 Mar, 2005 MMI-FIX-11321 | |
| 19 Issue Description :- If the inbox is full and a new message is receivd, no indication is received. | |
| 20 Fix: Added support for handling indication when message box is full and | |
| 21 there is a pending message. | |
| 22 | |
| 23 | |
| 24 . | |
| 25 */ | |
| 26 | |
| 27 #ifndef DEF_MFW_CB_HEADER | |
| 28 #define DEF_MFW_CB_HEADER | |
| 29 | |
| 30 // May 10, 2006 REF: DRT OMAPS00075829 xdeepadh | |
| 31 #if defined(FF_MMI_FILEMANAGER)||defined(FF_MMI_CAMERA_APP) | |
| 32 | |
| 33 /*Defining the premitive*/ | |
| 34 #define MSL_MMI_IND 0x110 /*Specifying hex value */ | |
| 35 | |
| 36 typedef struct | |
| 37 { | |
| 38 U32 handle; /*< 0: 4> Basic Element */ | |
| 39 U32 appData; /*< 4: 4> Basic Element */ | |
| 40 U32 message; /*< 8: 4> Basic Element */ | |
| 41 U32 ucp; /*< 12: 4> Basic Element */ | |
| 42 } T_MSL_MMI_IND; | |
| 43 | |
| 44 | |
| 45 | |
| 46 #endif //defined(FF_MMI_FILEMANAGER)||defined(FF_MMI_CAMERA_APP) | |
| 47 /* | |
| 48 * not yet defined in aci_cmh.h | |
| 49 */ | |
| 50 #define CME_ERR_SimPin2Req 35 | |
| 51 #define CME_ERR_SimPuk2Req 36 | |
| 52 // x0018858 24 Mar, 2005 MMI-FIX-11321 | |
| 53 extern UBYTE sms_check_message_pending(void); | |
| 54 // May 10, 2006 REF: DRT OMAPS00075829 xdeepadh | |
| 55 #if defined(FF_MMI_FILEMANAGER)||defined(FF_MMI_CAMERA_APP) | |
| 56 GLOBAL BOOL mslPrimHandler (USHORT opc, void * data) ; | |
| 57 GLOBAL void Mslil_msl_mmi_ind ( T_MSL_MMI_IND *msl_mmi_ind); /*a0393213 compiler warning removal - removed const*/ | |
| 58 /*a0393213 cphs rel4*/ | |
| 59 #ifdef FF_CPHS_REL4 | |
| 60 GLOBAL void rAT_PercentCFIS ( T_ACI_CFIS_CFU *cfis ); | |
| 61 #endif | |
| 62 #endif //#if defined(FF_MMI_FILEMANAGER)||defined(FF_MMI_CAMERA_APP) | |
| 63 #endif |
