Update contrib.
3 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 // All rights reserved.
5 // This component and the accompanying materials are made available
6 // under the terms of "Eclipse Public License v1.0"
7 // which accompanies this distribution, and is available
8 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 // Initial Contributors:
11 // Nokia Corporation - initial contribution.
31 #include <a3f/a3fbase.h>
32 #include "maudiostreamadaptationobserver.h"
36 class MMultimediaResourceControlObserver;
38 class CMMRCServerSession;
39 class CMMRCClientImplementation;
44 // This class opens connection and provides functions to MMRC server.
46 // @lib mmrcclient.lib
51 IMPORT_C RMMRCClient();
53 IMPORT_C virtual ~RMMRCClient();
56 // Open connection to server.
58 // @param aConnection Interface to server, must not be connected.
59 // @param aCallback Callback interface.
60 // @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
62 IMPORT_C TInt Open(MMultimediaResourceControlObserver& aCallback);
65 // Zero is invalid Context id and indicates error.
66 // @param aProcessId Process Id.
67 // @return TUint32 Context Id.
69 IMPORT_C TUint64 LogOn(TProcessId aProcessId);
72 // Asynchronous return to ReceiveResourceResponse.
74 // @param aMessage Message to be sent.
75 // @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
77 IMPORT_C TInt SendResourceRequest(MLogicalChain* aCurrent, MLogicalChain* aDesired, CAudioContext* aContext);
82 // @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
84 IMPORT_C TInt SendResourceConfirmation();
89 // @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
91 IMPORT_C TInt SendResourceUpdateResult();
96 // @return an error code. KErrNone if successful, otherwise one of the system wide error codes.
98 IMPORT_C TInt SendResourceErrorNotification();
101 // Close connection to server.
103 IMPORT_C void Close();
105 // Register a client for notification.
107 IMPORT_C TInt RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData);
110 // Cancel the register of a client for notification.
112 IMPORT_C TInt CancelRegisterAsClient(TUid aEventType);
116 IMPORT_C TInt WillResumePlay();
118 IMPORT_C void ResetMessages();
121 CMMRCClientImplementation* iImplementation;
124 #endif // RMMRCCLIENT_H