sl@0: #ifndef __F32FILE_H__ sl@0: #define __F32FILE_H__/* sl@0: * Copyright (c) 2008-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 the License "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: sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent sl@0: */ sl@0: enum TFileMode sl@0: { sl@0: EFileShareExclusive, sl@0: EFileShareReadersOnly, sl@0: EFileShareAny, sl@0: EFileShareReadersOrWriters, sl@0: sl@0: EFileStream=0, sl@0: EFileStreamText=0x100, sl@0: sl@0: EFileRead=0, sl@0: EFileWrite=0x200, sl@0: EFileReadAsyncAll=0x400, sl@0: EFileWriteBuffered =0x00000800, sl@0: EFileWriteDirectIO =0x00001000, sl@0: EFileReadBuffered =0x00002000, sl@0: EFileReadDirectIO =0x00004000, sl@0: EFileReadAheadOn =0x00008000, sl@0: EFileReadAheadOff =0x00010000 sl@0: sl@0: }; sl@0: sl@0: class RFs sl@0: { sl@0: public: sl@0: TInt Connect(TInt aSlots=-1) { (void)aSlots; return 0; } sl@0: void Close() {} sl@0: }; sl@0: sl@0: #endif