diff -r 000000000000 -r 9cfd9a3ee49c locationmgmt/networkgateway/src/netgatewaymain.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/locationmgmt/networkgateway/src/netgatewaymain.cpp Tue Feb 02 01:50:39 2010 +0200 @@ -0,0 +1,49 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// Global entry point for the LBS Network Gateway executable +// +// + +#include +#include "claunchedprocess.h" +#include "csecureprocessasbase.h" +#include "lbsdevloggermacros.h" + +GLDEF_C TInt E32Main() + { + LBSLOG_BEGIN(); + LBSLOG(ELogP3, "Network gateway start"); + + TInt r = KErrNone; + // do we need to process any startline params? + if(User::CommandLineLength()>0) + { + // yes, so assume these are TProcessStartParams that we understand + TProcessStartParams params; + TPtr ptr(reinterpret_cast(¶ms), 0, sizeof(TProcessStartParams)/sizeof(TText16)); + User::CommandLine(ptr); + r = CLaunchedProcess::CompleteProcessLaunch(params); + } + else + { + // no - so somebody and this should ONLY be the test team!! - has passed + // us a null command line, presumably by directly calling RProcess::Create() + // NB in this case you have no way of determining directly that the process + // creation has failed, or if the process is ready to start processing events! + r = CLaunchedProcess::CompleteProcessLaunch(); + } + LBSLOG(ELogP3, "Network gateway stop"); + return r; + } +