Update contrib.
2 * Copyright (c) 2006-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.
15 * Name : stdioclient.h
16 * Part of : stdio server
17 * stdio Redirection Server - client interface DLL
24 #ifndef __RSTDIO_SESSION__
25 #define __RSTDIO_SESSION__
27 #include<e32std.h> //RSessionBase
41 //-----------------------------------------------------------------------
42 //Class name: RStdioSession
43 //Description: It represents the seesion to Stdio Server.
44 //-----------------------------------------------------------------------
46 class RStdioSession : public RSessionBase
50 void Read(TRequestStatus& aStatus, TDes8& aDes, TInt aLength);
51 void Write(TRequestStatus& aStatus, const TDesC8& aDes, TInt aLength);
52 TInt CheckMedia(TDes8& aDes);
53 void NotifyActivity(TInt aEvents, TRequestStatus& aRequest);
55 int SetEcho(TBool aEcho);
58 #endif //__RSTDIO_SESSION__