First public contribution.
2 * Copyright (c) 2009 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.
21 #include"std_log_result.h"
22 #define LOG_FILENAME_LINE __FILE__, __LINE__
29 TPtrC16 myTptr=buf.Des();
30 wchar_t* myWchar =L"hellohello";
31 retval[0] = WcharpToTptrc16(myWchar,myTptr);
33 wstring myWstring(L"gfgfdfdafggffghghf");
34 retval[1] = Tptrc16ToWstring(myTptr,myWstring);
36 HBufC16 *hbufc = HBufC16::NewMaxL(20);
37 retval[2] = WstringToHbufc16(myWstring,hbufc);
39 wstring myFinWstring(L"aghfgafdsgfg");
40 retval[3] = Hbufc16ToWstring(hbufc,myFinWstring);
42 char* temp = new char[30];
44 TPtrC8 myTptr8 = buf8.Des();
45 retval[4] = WstringToTptrc8(myFinWstring,temp,myTptr8);
47 wchar_t* myFinWchar = new wchar_t[21];
49 retval[5] = Tptrc8ToWcharp(myTptr8,myFinWchar,size);
51 for(int i=1; i<=5; i++)
54 printf("Conversion failed for retval\n",retval[i]);
57 if(!wcscmp(myWchar,myFinWchar))
59 printf("\n\nintegration_test_scenario22 case passed");
63 printf("\n\nintegration_test_scenario22 case failed");
71 testResultXml("integration_test_scenario22");