Update contrib.
1 // Copyright (c) 1998-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.
20 #ifndef MAX_READ_AHEAD_VALUE
21 #define MAX_READ_AHEAD_VALUE 2048
23 #if MAX_READ_AHEAD_VALUE < 512
24 #error "MAX_READ_AHEAD_VALUE macro value can't be less than 512"
28 const TInt KMaxFileBufReadAhead=MAX_READ_AHEAD_VALUE;
30 #ifndef FILE_BLOCK_SIZE
31 #define FILE_BLOCK_SIZE 1024
33 #if FILE_BLOCK_SIZE < 512
34 #error "FILE_BLOCK_SIZE macro value can't be less than 512"
36 #if ((FILE_BLOCK_SIZE) & ((FILE_BLOCK_SIZE) - 1)) != 0
37 #error "FILE_BLOCK_SIZE macro value must be power of 2"
41 const TInt KFileBufBlockSize=FILE_BLOCK_SIZE;
46 EFileReadLengthNegative,
49 EFileWriteLengthNegative,
52 EFileWriteOutstanding,
56 EStoreUid3MustNotBeNull
59 GLREF_C void Panic(TFilePanic aPanic);