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 Descriptor8 to wchar * conversions
25 * Converts a descriptor of type TBuf8 to wchar
27 * @param aSrc is the descriptor to be converted , aDes is the
28 * reference to the wchar array where the result of conversion
30 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
31 * -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
34 EXPORT_C int Tbuf8ToWchar(TDes8& aSrc, wchar_t* aDes, int& n_size)
36 int retval = ESuccess;
37 unsigned int ilen = aSrc.Length();
42 return EDescriptorNoData;
46 return EInvalidPointer;
48 else if(n_size < ilen+1)
54 if(minusone != mbstowcs(aDes, (const char*)aSrc.Ptr(), ilen))
56 *(aDes + ilen) = L'\0';
60 retval = EInvalidMBSSequence;
67 * Converts a descriptor of type TBufc8 to wchar
69 * @param aSrc is the descriptor to be converted , aDes is the
70 * reference to the wchar array where the result of conversion
72 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
73 * -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
76 EXPORT_C int Tbufc8ToWchar(TDesC8& aSrc, wchar_t* aDes, int& n_size)
78 int retval = ESuccess;
79 unsigned int ilen = aSrc.Length();
84 return EDescriptorNoData;
88 return EInvalidPointer;
90 else if (n_size < ilen+1)
96 if(minusone != mbstowcs(aDes, (const char *)aSrc.Ptr(), ilen))
102 retval = EInvalidMBSSequence;
109 * Converts a descriptor of type TLitc8 to wchar
111 * @param aSrc is the descriptor to be converted , aDes is the
112 * reference to the wchar array where the result of conversion
114 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
115 * -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
118 EXPORT_C int Tlitc8ToWchar( const TDesC8& aSrc, wchar_t* aDes, int& n_size)
120 int retval = ESuccess;
121 unsigned int ilen = aSrc.Length();
126 return EDescriptorNoData;
130 return EInvalidPointer;
132 else if (n_size < ilen+1)
138 if(minusone != mbstowcs(aDes, (const char*)aSrc.Ptr(), ilen ))
144 retval = EInvalidMBSSequence;
151 *Converts a descriptor of type TPtr8 to Wchar
152 *@param aSrc is the descriptor to be converted , aDes is the
153 *reference to the wchar array where the result of conversion
155 *@return Status code (0 is ESuccess, -1 is EInsufficientMemory,
156 * -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
159 EXPORT_C int Tptr8ToWcharp(const TPtr8& aSrc, wchar_t* aDes, int& n_size)
162 int retval = ESuccess;
163 unsigned int ilen = aSrc.Length();
168 return EDescriptorNoData;
172 return EInvalidPointer;
174 else if(n_size < ilen+1)
180 if(minusone != mbstowcs(aDes, (const char*)aSrc.Ptr(), ilen))
186 retval = EInvalidMBSSequence;
193 *Converts a descriptor of type TPtrc to Wchar
195 *@param aSrc is the descriptor to be converted , aDes is the
196 *reference to the wchar array where the result of conversion
198 *@return Status code (0 is ESuccess, -1 is EInsufficientMemory,
199 * -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
202 EXPORT_C int Tptrc8ToWcharp(TPtrC8& aSrc, wchar_t* aDes, int& n_size)
204 int retval = ESuccess;
205 unsigned int ilen = aSrc.Length();
210 return EDescriptorNoData;
214 return EInvalidPointer;
216 else if(n_size < ilen)
222 if(minusone != mbstowcs(aDes, (const char*)aSrc.Ptr(), ilen))
228 retval = EInvalidMBSSequence;
235 *Converts a descriptor of type Rbuf8 to Wchar
237 *@param aSrc is the descriptor to be converted , aDes is the
238 *reference to the wchar array where the result of conversion
240 *@return Status code (0 is ESuccess, -1 is EInsufficientMemory,
241 * -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
244 EXPORT_C int Rbuf8ToWchar(TDes8& aSrc, wchar_t* aDes, int& n_size)
246 int retval = ESuccess;
247 unsigned int ilen = aSrc.Length();
252 return EDescriptorNoData;
256 return EInvalidPointer;
258 else if (n_size < ilen)
264 if(minusone != mbstowcs(aDes, (const char*)aSrc.Ptr(), ilen))
266 *(aDes + ilen) = L'\0';
270 retval = EInvalidMBSSequence;
277 *Converts a descriptor of type Rbuf8 to Wchar
279 *@param aSrc is the descriptor to be converted , aDes is the
280 *reference to the wchar array where the result of conversion
282 *@return Status code (0 is ESuccess, -1 is EInsufficientMemory,
283 * -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
286 EXPORT_C int HBufc8ToWchar(HBufC8* aSrc, wchar_t* aDes, int& n_size)
288 int retval = ESuccess;
289 unsigned int ilen = 0;
294 return EInvalidPointer;
298 int ilen = aSrc->Length();
301 return EDescriptorNoData;
303 else if (n_size < ilen)
310 if(minusone != mbstowcs(aDes, (const char*)aSrc->Ptr(), ilen))
312 *(aDes + ilen) = L'\0';
316 retval = EInvalidMBSSequence;