comparison src/ui/mfw/mfw_cnvt.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: MMI-Framework (8417) $Workfile:: mfw_cnvt.h $|
4 | $Author:: Es $ CONDAT GmbH $Revision:: 1 $|
5 | CREATED: 03.08.00 $Modtime:: 03.08.00 18:23 $|
6 | STATE : code |
7 +--------------------------------------------------------------------+
8
9 MODULE : MFW_CNVT
10
11 PURPOSE : String convertion
12
13 EXPORT :
14
15 TO DO :
16
17 $History:: mfw_cnvt.h $
18 */
19
20 #ifndef _DEF_MFW_CNVT_H_
21 #define _DEF_MFW_CNVT_H_
22
23
24 /* #include "phb.h" RSA 20/12/01 - Removed */
25 #include"mfw_phb.h" //RSA 20/12/01 - Added
26 #include "mfw_cm.h"
27 #include "mfw_ss.h"
28
29 T_MFW_DCS mfw_getStrMode(UBYTE *str,UBYTE len);
30 T_MFW mfw_SIM2GsmStr(UBYTE inLen, UBYTE *inMfwStr, UBYTE maxOutSize,
31 UBYTE *outGsmStr);
32 T_MFW mfw_SIM2UcsStr(UBYTE inLen, UBYTE *inMfwStr, UBYTE maxOutSize,
33 U16 *outUcsStr);
34 T_MFW mfw_Gsm2SIMStr(T_MFW_DCS outMode, UBYTE *inGsmStr, UBYTE maxOutSize,
35 UBYTE *outMfwStr,UBYTE *outLen);
36 T_MFW mfw_Ucs2SIMStr(T_MFW_DCS outMode, U16 *inUcsStr, UBYTE maxOutSize,
37 UBYTE *outMfwStr, UBYTE *outLen);
38 /*CONQUEST 5992(related) MC added function to convert GSM string to ASCII*/
39 EXTERN void mfw_GSM_2_ASCII(UBYTE* gsm_string, UBYTE* ascii_string, SHORT length);
40
41 #endif