Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include <a3f/mmfaudioserverinterface.h>
20 // -----------------------------------------------------------------------------
22 // Just an E32Main and a MainL()
23 // -----------------------------------------------------------------------------
27 * Much simpler, uses the new Rendezvous() call to sync with the client
30 // Leave the hooks in for platform security
31 #if (defined __DATA_CAGING__)
32 RProcess().DataCaging(RProcess::EDataCagingOn);
33 RProcess().SecureApi(RProcess::ESecureApiOn);
35 CActiveScheduler* sched=NULL;
36 sched=new(ELeave) CActiveScheduler;
37 CActiveScheduler::Install(sched);
38 CAudioSvrLoader* server = NULL;
39 TRAPD(err,server = CAudioSvrLoader::NewL() );
40 // Sync with the client
41 RProcess::Rendezvous(err);
44 // enter the active scheduler
53 // -----------------------------------------------------------------------------
55 // Just an E32Main and a MainL()
56 // -----------------------------------------------------------------------------
58 GLDEF_C TInt E32Main()
60 * @return - Standard Epoc error code on exit
63 CTrapCleanup* cleanup = CTrapCleanup::New();