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.
19 #include "glibbackend.h"
24 extern "C" EXPORT_C char *getProgPath(char *progName)
26 TText16 iName16[KMaxFileName];
30 char replacePath[KMaxFileName];
32 /* replace / with // */
33 strcpy(replacePath,progName);
34 char *temp = strchr(replacePath,'/');
38 temp = strchr(replacePath,'/');
41 //convert narrow chars to wide chars
42 mbstowcs((wchar_t *)iName16, replacePath, strlen(replacePath)+1);
44 //create TDesC to pass to RProcess.Create()
45 TBuf16<KMaxFileName> iCmdName16(iName16);
48 // Check if Create if successful. If not successful
49 // the executable by that name does not exits. Hence,
51 if(iProcess.Create(iCmdName16,KArg))
55 // If successful, convert from TDesC to narrow chars and
57 TFileName fileName = iProcess.FileName();
61 pathLength = fileName.Length();
63 progPath = (char *)malloc(pathLength + 1);
68 for(int i=0;i < pathLength;i++)
70 progPath[i] = fileName[i];
73 progPath[pathLength] = '\0';