installationservices/swtransactionservices/test/tintegrityservices/source/e32main.cpp
branchRCL_3
changeset 26 8b7f4e561641
parent 25 7333d7932ef7
child 27 e8965914fac7
--- a/installationservices/swtransactionservices/test/tintegrityservices/source/e32main.cpp	Tue Aug 31 15:21:33 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,61 +0,0 @@
-/*
-* 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 the License "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: 
-* E32MAIN
-* Entry point for Test TIntegrityServices Server
-*
-*/
-
-
-#include <e32std.h>
-#include <e32base.h>
-#include "tintegrityservicesserver.h"
-
-// Perform server initialisation, in particular creation of the scheduler and 
-// server and then run the scheduler
-static void RunServerL()
-	{
-	// Naming the server thread after the server helps to debug panics
-	User::LeaveIfError(RThread().RenameMe(KIntegrityServicesServer));
-	// Create and install the active scheduler we need
-	CActiveScheduler* s= new(ELeave) CActiveScheduler;
-	CleanupStack::PushL(s);
-	CActiveScheduler::Install(s);
-	// Create the server and leave it on the cleanup stack
-	Usif::CIntegrityServicesServer::NewLC();
-	// Init complete, signal the client
-	RProcess::Rendezvous(KErrNone);
-	// Ready to run
-	CActiveScheduler::Start();
-	// Cleanup server and scheduler
-	CleanupStack::PopAndDestroy(2);
-	}
-
-//
-// Server process entry point
-//
-
-TInt E32Main()
-	{
-	__UHEAP_MARK;
-	CTrapCleanup* cleanup=CTrapCleanup::New();
-	TInt err=KErrNoMemory;
-	if (cleanup)
-		{
-		TRAP(err, RunServerL());
-		delete cleanup;
-		}
-	__UHEAP_MARKEND;
-	return err;
-	}