locationmgmt/networklocationmgr/src/lbsnetlocmanmain.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 01:50:39 +0200
changeset 0 9cfd9a3ee49c
permissions -rw-r--r--
Revision: 201002 Kit: 201005

// 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:
//
	
#include "e32base.h"
#include "csecureasbase.h"
#include "tprocessstartparams.h"
#include "claunchedprocess.h"


// E32Main for Network Location Manager
TInt E32Main()
	{
	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<TText*>(&params), 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();
		}
	return r;
	}