comparison src/aci2/mfw/mfw_cnvt.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 /*
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