Update contrib.
1 // Copyright (c) 2005-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 "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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __IPCSTREAM_H__
17 #define __IPCSTREAM_H__
23 IPC, server-side class.
25 HIpcStream class is part of the server-side IPC framework, used for transferring large blocks of
26 data to/from the client side.
30 NONSHARABLE_CLASS(HIpcStream)
33 inline HIpcStream(MStreamBuf* aHost, TInt aReadPos);
36 TInt ReadL(const RMessage2& aMessage);
37 void WriteL(const RMessage2& aMessage);
49 IPC, server-side class.
51 HIpcReadBuf class is part of the server-side IPC framework, used for transferring large blocks of
52 data to the client side.
54 The difference between HIpcReadBuf and HIpcBufBuf is that HIpcReadBuf does not allocate memory for
55 the data. It keeps just a pointer to the data which needs to be sent to the client side.
61 NONSHARABLE_CLASS(HIpcReadBuf) : public TMemBuf
64 inline static HIpcReadBuf* NewL(const TDesC8& aDes);
67 inline HIpcReadBuf(const TDesC8& aDes);
68 virtual void DoRelease();
72 #include "IPCStream.inl"
74 #endif//__IPCSTREAM_H__