userlibandfileserver/fileserver/sfsrv/cl_shim.cpp
changeset 0 a41df078684a
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     1 // Copyright (c) 2008-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 the License "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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // f32\sfsrv\cl_plugin_shim.cpp
       
    15 // 
       
    16 //
       
    17 
       
    18 #include "cl_std.h"
       
    19 
       
    20 /*******************************************************
       
    21 *						   RFs						   *
       
    22 *******************************************************/
       
    23 
       
    24 TInt RFs::SendReceive(TInt aFunction,const TIpcArgs& aArgs) const
       
    25 	{return RSessionBase::SendReceive(aFunction, aArgs);}
       
    26 
       
    27 /*******************************************************
       
    28 *						  RFile						   *
       
    29 *******************************************************/
       
    30 
       
    31 TInt RFile::CreateSubSession(const RSessionBase& aSession,TInt aFunction,const TIpcArgs& aArgs)
       
    32 	{return RSubSessionBase::CreateSubSession(aSession, aFunction, aArgs);}
       
    33 
       
    34 void RFile::CloseSubSession(TInt aFunction)
       
    35 	{RSubSessionBase::CloseSubSession(aFunction);}
       
    36 
       
    37 TInt RFile::SendReceive(TInt aFunction,const TIpcArgs& aArgs) const
       
    38 	{return RSubSessionBase::SendReceive(aFunction, aArgs);}
       
    39 
       
    40 /*******************************************************
       
    41 *						  RDir						   *
       
    42 *******************************************************/
       
    43 
       
    44 TInt RDir::SendReceive(TInt aFunction,const TIpcArgs& aArgs) const
       
    45 	{return RSubSessionBase::SendReceive(aFunction, aArgs);}