sl@0: // Copyright (c) 2005-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: // sl@0: sl@0: #ifndef __IPCDEFS_H__ sl@0: #define __IPCDEFS_H__ sl@0: sl@0: #include sl@0: sl@0: #ifdef _DEBUG sl@0: sl@0: const TInt KIpcStreamSize = 8; sl@0: const TInt KIpcBufSize = 8; sl@0: sl@0: #else //_DEBUG sl@0: sl@0: const TInt KIpcStreamSize = 3 * 1024; sl@0: const TInt KIpcBufSize = KIpcStreamSize / 2; sl@0: sl@0: #endif//_DEBUG sl@0: sl@0: /** sl@0: IPC temporary data buffer. sl@0: sl@0: HIpcBuf class uses the buffer as a temporary IPC data storage when a large block of data sl@0: has to be sent to the server. In this case the data will be split in chunks, each of sl@0: TIpcStreamBuf size, and every chunk will be sent separately and the large data block will sl@0: reconstructed on the server side. sl@0: sl@0: @see HIpcBuf sl@0: sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_CLASS(TIpcStreamBuf) sl@0: { sl@0: public: sl@0: enum {ESize = KIpcBufSize}; sl@0: public: sl@0: TInt iExt; sl@0: TUint8 iData[ESize]; sl@0: }; sl@0: sl@0: #endif//__IPCDEFS_H__