sl@0: /* sl@0: * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: DRM audio player session class sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __RDRMSESSION_H sl@0: #define __RDRMSESSION_H sl@0: sl@0: #include sl@0: sl@0: sl@0: class RDrmSession : public RSessionBase sl@0: { sl@0: // Functions sl@0: public: sl@0: sl@0: RDrmSession(); sl@0: ~RDrmSession(); sl@0: sl@0: //Sync Db server request sl@0: TInt Connect(); sl@0: void Disconnect(); sl@0: //TInt SendDrmMessage(); sl@0: TVersion Version() const; sl@0: sl@0: //Sync send no data sl@0: TInt Send(TInt aFunction); sl@0: //Sync send with data sl@0: TInt Send(TInt aFunction,const TIpcArgs& aArgs); sl@0: //Async send no data sl@0: void Send(TInt aFunction,TRequestStatus& aStatus); sl@0: //Async send with data sl@0: void Send(TInt aFunction,const TIpcArgs& aArgs,TRequestStatus& aStatus); sl@0: sl@0: private: sl@0: }; sl@0: sl@0: #endif sl@0: sl@0: // End of file