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.
32 _LIT(KIpcBufPanic, "IpcBuf");
34 class RIpcBuf : public MStreamBuf
37 IMPORT_C void Open(const RMessagePtr2& aMessage, TInt aMessageSlot);
40 IMPORT_C TStreamPos DoSeekL(TMark aMark, TStreamLocation aLocation, TInt anOffset);
42 IMPORT_C TInt DoReadL(TAny *aPtr, TInt aMaxLength);
43 IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength);
48 EIpcBufSeekUnknownLocation,
55 RMessagePtr2 iMessage;
61 #endif /* __IPCBUF_H__ */