sl@0: // Copyright (c) 1998-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: #include sl@0: #include "U32STD.H" sl@0: #include "U32PERM.H" sl@0: sl@0: #ifndef MAX_READ_AHEAD_VALUE sl@0: #define MAX_READ_AHEAD_VALUE 2048 sl@0: #else sl@0: #if MAX_READ_AHEAD_VALUE < 512 sl@0: #error "MAX_READ_AHEAD_VALUE macro value can't be less than 512" sl@0: #endif sl@0: #endif sl@0: sl@0: const TInt KMaxFileBufReadAhead=MAX_READ_AHEAD_VALUE; sl@0: sl@0: #ifndef FILE_BLOCK_SIZE sl@0: #define FILE_BLOCK_SIZE 1024 sl@0: #else sl@0: #if FILE_BLOCK_SIZE < 512 sl@0: #error "FILE_BLOCK_SIZE macro value can't be less than 512" sl@0: #endif sl@0: #if ((FILE_BLOCK_SIZE) & ((FILE_BLOCK_SIZE) - 1)) != 0 sl@0: #error "FILE_BLOCK_SIZE macro value must be power of 2" sl@0: #endif sl@0: #endif sl@0: sl@0: const TInt KFileBufBlockSize=FILE_BLOCK_SIZE; sl@0: sl@0: // sl@0: enum TFilePanic sl@0: { sl@0: EFileReadLengthNegative, sl@0: EFileReadBeyondEnd, sl@0: EFileReadNoTransfer, sl@0: EFileWriteLengthNegative, sl@0: EFileWriteBeyondEnd, sl@0: EFileWriteNoTransfer, sl@0: EFileWriteOutstanding, sl@0: EFileMarkInvalid, sl@0: EFileLocationInvalid, sl@0: EFileStoreBadType, sl@0: EStoreUid3MustNotBeNull sl@0: }; sl@0: sl@0: GLREF_C void Panic(TFilePanic aPanic); sl@0: sl@0: #include "UF_STD.INL" sl@0: