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 Descriptor16 to wchar * conversions
25 * Converts a descriptor of type TBuf16 to WChar
27 * @param aSrc is the descriptor to be converted , aDes is the
28 * reference to the WChar stream where the result of conversion
29 * is stored , n_size specifies the conversion size of the WChar
30 * @return Status code (0 is ESuccess, -2 is EInvalidSize ,
31 * -4 is EInvalidPointer)
34 EXPORT_C int Tbuf16ToWchar(const TDes16& aSrc, wchar_t* aDes, int& n_size)
36 unsigned int ilen = aSrc.Length();
40 return EDescriptorNoData;
44 return EInvalidPointer;
46 else if(n_size < (ilen+1))
52 wmemcpy(aDes , (const wchar_t*)aSrc.Ptr(), ilen);
59 * Converts a descriptor of type HBufC16 to WChar
61 * @param aSrc is the descriptor to be converted , aDes is the
62 * reference to the WChar stream where the result of conversion
63 * is stored , n_size specifies the conversion size of the WChar
64 * @return Status code (0 is ESuccess, -2 is EInvalidSize ,
65 * -4 is EInvalidPointer)
68 EXPORT_C int Hbufc16ToWchar(const HBufC16* aSrc, wchar_t* aDes, int& n_size)
70 unsigned int ilen = 0;
73 return EInvalidPointer;
77 ilen = aSrc->Length();
81 return EDescriptorNoData;
83 else if(n_size < (ilen+1))
90 wmemcpy(aDes , (const wchar_t*)aSrc->Ptr(), ilen);
98 * Converts a descriptor of type TBufC16 to WChar
100 * @param aSrc is the descriptor to be converted , aDes is the
101 * reference to the WChar stream where the result of conversion
102 * is stored , n_size specifies the conversion size of the WChar
103 * @return Status code (0 is ESuccess, -2 is EInvalidSize ,
104 * -4 is EInvalidPointer)
107 EXPORT_C int Tbufc16ToWchar(TDesC& aSrc, wchar_t* aDes, int& n_size)
109 unsigned int ilen = aSrc.Length();
113 return EDescriptorNoData;
117 return EInvalidPointer;
119 if (n_size < (ilen+1))
125 wmemcpy(aDes, (wchar_t *)aSrc.Ptr(), ilen);
126 *(aDes + ilen) = L'\0';
133 * Converts a descriptor of type TLitC16 to WChar
135 * @param aSrc is the descriptor to be converted , aDes is the
136 * reference to the WChar stream where the result of conversion
137 * is stored , n_size specifies the conversion size of the WChar
138 * @return Status code (0 is ESuccess, -2 is EInvalidSize ,
139 * -4 is EInvalidPointer)
141 EXPORT_C int Tlitc16ToWchar(const TDesC16& aSrc, wchar_t* aDes, int& n_size)
143 unsigned int ilen = aSrc.Length();
147 return EDescriptorNoData;
151 return EInvalidPointer;
153 else if (n_size < (ilen+1))
159 wmemcpy(aDes , (const wchar_t*)aSrc.Ptr(), ilen);
167 * Converts a descriptor of type TPtr16 to WChar
169 * @param aSrc is the descriptor to be converted , aDes is the
170 * reference to the WChar stream where the result of conversion
171 * is stored , n_size specifies the conversion length of the WChar
172 * @return Status code (0 is ESuccess, -2 is EInvalidSize ,
173 * -4 is EInvalidPointer)
176 EXPORT_C int Tptr16ToWcharp(const TPtr16& aSrc ,wchar_t* aDes, int& n_size)
178 unsigned int ilen = aSrc.Length();
182 return EDescriptorNoData;
186 return EInvalidPointer;
188 else if(n_size < ilen)
194 wmemcpy(aDes, (const wchar_t*)aSrc.Ptr(), ilen);
201 * Converts a descriptor of type TPtrC16 to WChar
203 * @param aSrc is the descriptor to be converted , aDes is the
204 * reference to the WChar stream where the result of conversion
205 * is stored , n_size specifies the conversion length of the WChar
206 * @return Status code (0 is ESuccess, -2 is EInvalidSize ,
207 * -4 is EInvalidPointer)
210 EXPORT_C int Tptrc16ToWcharp(TPtrC16& aSrc, wchar_t* aDes, int& n_size)
212 unsigned int ilen = aSrc.Length();
216 return EDescriptorNoData;
220 return EInvalidPointer;
222 else if (n_size < (ilen+1))
228 wmemcpy(aDes , (const wchar_t*)aSrc.Ptr(),ilen);
235 * Converts a descriptor of type RBuf16 to WChar
237 * @param aSrc is the descriptor to be converted , aDes is the
238 * reference to the WChar stream where the result of conversion
239 * is stored , n_size specifies the conversion length of the WChar
240 * @return Status code (0 is ESuccess, -2 is EInvalidSize ,
241 * -4 is EInvalidPointer , -5 is EDESCRIPTORNDATA)
244 EXPORT_C int Rbuf16ToWchar(TDes16& aSrc, wchar_t* aDes, int& n_size)
246 unsigned int ilen = aSrc.Length();
250 return EDescriptorNoData;
254 return EInvalidPointer;
256 else if (n_size < (ilen+1))
262 wmemcpy (aDes,(const wchar_t *)aSrc.Ptr(), ilen);