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 wchar_t* mycharstring = L"hellohello";
31 retval[0]= WcharToRbuf16(mycharstring,buf);
32 printf("The first value in retval array is %d\n", retval[0]);
35 retval[1]= Rbuf16ToWstring(buf,str);
36 printf("The second value in retval array is %d\n", retval[1]);
39 retval[2]= WstringToTbuf16(str,tbuf);
40 printf("The third value in retval array is %d\n", retval[2]);
42 wchar_t* myfinalstring= new wchar_t[15];
44 retval[3]= Tbuf16ToWchar(tbuf,myfinalstring,size);
45 printf("The fourth value in retval array is %d\n", retval[3]);
47 if(!wcscmp(mycharstring,myfinalstring))
49 printf("\nintegration_test_scenario16 case passed");
53 printf("\nintegration_test_scenario16 case failed");
57 delete[] myfinalstring;
60 testResultXml("integration_test_scenario16");