Update contrib.
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Contains the source for wchar * to Descriptor16 conversions
24 * Converts a wchar to a descriptor of type TBufc16
26 * @param aSrc is the wchar to be converted , aDes is the
27 * reference to the descriptor where the result of conversion
29 * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
30 * -3 is EStringNoData, -4 is EInvalidPointer )
34 EXPORT_C int WcharToTbuf16(const wchar_t* aSrc, TDes16& aDes)
36 unsigned int ilen = 0;
39 return EInvalidPointer;
44 if(ilen > aDes.MaxLength())
46 return EInsufficientMemory;
50 aDes.Copy((const TUint16*)aSrc, ilen);
54 * Converts a wchar to a descriptor of type HBufc16
56 * @param aSrc is the Wstring to be converted , aDes is the
57 * reference to the descriptor where the result of conversion
59 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
60 * -3 is EStringNoData, -6 is EUseNewMaxL )
63 EXPORT_C int WcharToHbufc16 (const wchar_t* aSrc ,HBufC16* aDes )
66 unsigned int ilendes = 0;
69 return EInvalidPointer;
72 ilendes = aDes->Length();
78 else if (ilendes < wcslen(aSrc))
80 return EInsufficientMemory;
83 *aDes = (const TUint16*)aSrc;
88 * Converts a wchar to a descriptor of type TPtr16
90 * @param aSrc is the wchar to be converted , aDes is the
91 * reference to the descriptor where the result of conversion
93 * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
94 * -3 is EStringNoData, -4 is EInvalidPointer )
97 EXPORT_C int WcharpToTptr16(const wchar_t* aSrc, TPtr16& aDes)
99 unsigned int ilen = 0, ilendes = 0;
102 return EInvalidPointer;
106 ilendes = aDes.MaxLength();
110 return EInsufficientMemory;
113 aDes.Set((unsigned short*) aSrc, ilen, ilendes);
119 * Converts a wchar to a descriptor of type TPtrC16
121 * @param aSrc is the wchar to be converted , aDes is the
122 * reference to the descriptor where the result of conversion
124 * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
125 * -3 is EStringNoData, -4 is EInvalidPointer )
127 EXPORT_C int WcharpToTptrc16(const wchar_t* aSrc, TPtrC16& aDes)
132 return EInvalidPointer;
135 aDes.Set((TUint16 *)(aSrc), wcslen(aSrc));
141 * Converts a wchar to a descriptor of type RBuf16
143 * @param aSrc is the wchar to be converted , aDes is the
144 * reference to the descriptor where the result of conversion
146 * @return Status code (0 is ESuccess ,-1 is EInsufficientMemory,
147 * -3 is EStringNoData, -4 is EInvalidPointer )
150 EXPORT_C int WcharToRbuf16(const wchar_t* aSrc, RBuf16& aDes)
153 int retval = ESuccess;
154 unsigned int wlen = 0;
157 return EInvalidPointer;
162 aDes.Copy((const unsigned short *)aSrc, wlen);