1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/security/securityanddataprivacytools/securitytools/certapp/store--/f32file.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,53 @@
1.4 +#ifndef __F32FILE_H__
1.5 +#define __F32FILE_H__/*
1.6 +* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.7 +* All rights reserved.
1.8 +* This component and the accompanying materials are made available
1.9 +* under the terms of the License "Eclipse Public License v1.0"
1.10 +* which accompanies this distribution, and is available
1.11 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.12 +*
1.13 +* Initial Contributors:
1.14 +* Nokia Corporation - initial contribution.
1.15 +*
1.16 +* Contributors:
1.17 +*
1.18 +* Description:
1.19 +*
1.20 +*/
1.21 +
1.22 +
1.23 +/**
1.24 + @file
1.25 + @internalComponent
1.26 +*/
1.27 +enum TFileMode
1.28 +{
1.29 + EFileShareExclusive,
1.30 + EFileShareReadersOnly,
1.31 + EFileShareAny,
1.32 + EFileShareReadersOrWriters,
1.33 +
1.34 + EFileStream=0,
1.35 + EFileStreamText=0x100,
1.36 +
1.37 + EFileRead=0,
1.38 + EFileWrite=0x200,
1.39 + EFileReadAsyncAll=0x400,
1.40 + EFileWriteBuffered =0x00000800,
1.41 + EFileWriteDirectIO =0x00001000,
1.42 + EFileReadBuffered =0x00002000,
1.43 + EFileReadDirectIO =0x00004000,
1.44 + EFileReadAheadOn =0x00008000,
1.45 + EFileReadAheadOff =0x00010000
1.46 +
1.47 +};
1.48 +
1.49 +class RFs
1.50 + {
1.51 +public:
1.52 + TInt Connect(TInt aSlots=-1) { (void)aSlots; return 0; }
1.53 + void Close() {}
1.54 + };
1.55 +
1.56 +#endif