sl@0: // Copyright (c) 1999-2009 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: sl@0: // EPOC Server for redirecting stdin/stdout/stderr to a stream-like object sl@0: // (console, file or serial port) sl@0: // sl@0: // sl@0: sl@0: #ifndef _REDIRCLIINTERNAL_H_ sl@0: #define _REDIRCLIINTERNAL_H_ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: /** sl@0: Client side session for Redirection server sl@0: sl@0: @internalAll sl@0: */ sl@0: class RRedirSession2 : public RSessionBase sl@0: { sl@0: public: sl@0: IMPORT_C TInt Connect(); sl@0: IMPORT_C void Read(TRequestStatus& aStatus, TDes8& aDes); sl@0: IMPORT_C void Read(TRequestStatus& aStatus, TDes8& aDes, TInt aLength); sl@0: IMPORT_C void Write(TRequestStatus& aStatus, const TDesC8& aDes); sl@0: IMPORT_C void Write(TRequestStatus& aStatus, const TDesC8& aDes, TInt aLength); sl@0: IMPORT_C void Flush(TRequestStatus& aStatus); sl@0: private: sl@0: //TO DO: do we really need this function?? sl@0: TInt CheckEOF(TRequestStatus& aStatus); sl@0: }; sl@0: sl@0: sl@0: #endif