Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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 * Library to add s32strm support for IPC (ie. stream via multiple IPC read/writes instead of
16 * copying to a buffer and streaming to/from there.
26 #ifndef __IPCSTREAM_H__
27 #define __IPCSTREAM_H__
32 #include <scs/ipcbuf.h>
34 class RIpcReadStream : public RReadStream
37 IMPORT_C void Open(const RMessagePtr2& aMessage, TInt aMessageSlot);
38 IMPORT_C RIpcReadStream();
43 class RIpcWriteStream : public RWriteStream
46 IMPORT_C void Open(const RMessagePtr2& aMessage, TInt aMessageSlot);
47 IMPORT_C RIpcWriteStream();
52 #endif /* __IPCSTREAM_H__ */