Update contrib.
2 * Copyright (c) 2007-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.
20 #ifndef MMFAUDIOSVRSERVICE_H
21 #define MMFAUDIOSVRSERVICE_H
31 #include <ecom/ecom.h>
36 This is the interface for all audio service
37 plugins. So Each Service plugin has to implement this interface.
39 class MAudioSvrService
43 This method is used to pass a destructor key for ECom. The passed UID must be retained for the lifetime
44 of the plugin and, on a subsequent call to Release(),REComSession::DestroyedImplementation() must be
45 called by the plugin, using the stored UID.
46 @param aUid The Uid returned by REComSession::CreateImplementationL() or similar.
48 virtual void PassDestructorKey(TUid aUid)=0;
50 This method is used to load or create the objects that are internally used by service plugin.
51 @return KErrNone if successfull, else corresponding error code
53 virtual TInt Load()=0;
55 This method is used to start the service.
56 @return KErrNone if successfull, else corresponding error code
58 virtual TInt Start()=0;
60 This method is used to Stop the service.
61 @return KErrNone if successfull, else corresponding error code
63 virtual void Stop()=0;
65 This method is used to destroy plugin. This is equivalent to destructor.
67 virtual void Release()=0;