Update contrib.
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__
28 _LIT8(KTxt, "HelloHello");
29 HBufC8* buffer = HBufC8::NewL(10);
31 wstring myWstring(L"gfsdfdufhuhfhfsfsfsdf");
32 retval[0] = Hbufc8ToWstring(buffer,myWstring);
35 char* temp = new char[30];
36 retval[2] = WstringToTptrc8(myWstring,temp,myTptr8);
38 char* myChar = new char[40];
40 retval[3] = Tptrc8ToCharp(myTptr8,myChar,size);
43 TPtr8 myTptr = buf8.Des();
44 retval[4] = CharpToTptr8(myChar,myTptr);
46 wchar_t* Wstr_fin = new wchar_t[36];
48 retval[5] = Tptr8ToWcharp(myTptr,Wstr_fin,size_char);
50 _LIT8(text_fin, "fgdsgfgdsg");
51 HBufC8* finBuffer = HBufC8::NewL(10);
52 *finBuffer = text_fin;
53 retval[6] = WcharToHbufc8(Wstr_fin,finBuffer);
55 for(int i=1; i<=6; i++)
58 printf("Conversion failed for retval\n",retval[i]);
61 if(!buffer->Compare(finBuffer->Des()))
63 printf("\n\nintegration_test_scenario26 case passed");
67 printf("\n\nintegration_test_scenario26 case failed");
77 testResultXml("integration_test_scenario26");