os/mm/devsoundextensions/drmaudioplayer/DRMPlayUtility/src/mmfdrmSession.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:   DRM audio player session class
    15 *
    16 */
    17 
    18 
    19 #ifndef __RDRMSESSION_H
    20 #define __RDRMSESSION_H
    21 
    22 #include <e32std.h>
    23 
    24 
    25 class RDrmSession : public RSessionBase
    26     {
    27 	// Functions
    28 public:
    29 	
    30 	RDrmSession();	
    31  	~RDrmSession();
    32 	
    33 	//Sync Db server request
    34 	TInt  Connect();
    35 	void  Disconnect();
    36 	//TInt  SendDrmMessage();
    37 	TVersion Version() const;
    38 
    39 	//Sync send no data
    40 	TInt Send(TInt aFunction);
    41 	//Sync send with data
    42 	TInt Send(TInt aFunction,const TIpcArgs& aArgs);
    43 	//Async send no data
    44 	void Send(TInt aFunction,TRequestStatus& aStatus);
    45 	//Async send with data
    46 	void Send(TInt aFunction,const TIpcArgs& aArgs,TRequestStatus& aStatus);
    47 
    48 private:
    49     };
    50 
    51 #endif
    52 
    53 // End of file