os/security/securityanddataprivacytools/securitytools/certapp/store--/f32file.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 #ifndef __F32FILE_H__
     2 #define __F32FILE_H__/*
     3 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     4 * All rights reserved.
     5 * This component and the accompanying materials are made available
     6 * under the terms of the License "Eclipse Public License v1.0"
     7 * which accompanies this distribution, and is available
     8 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     9 *
    10 * Initial Contributors:
    11 * Nokia Corporation - initial contribution.
    12 *
    13 * Contributors:
    14 *
    15 * Description: 
    16 *
    17 */
    18 
    19 
    20 /**
    21  @file
    22  @internalComponent
    23 */
    24 enum TFileMode
    25 {
    26 	EFileShareExclusive,
    27 	EFileShareReadersOnly,
    28 	EFileShareAny,
    29 	EFileShareReadersOrWriters,
    30 
    31 	EFileStream=0,
    32 	EFileStreamText=0x100,
    33 
    34 	EFileRead=0,
    35 	EFileWrite=0x200,
    36 	EFileReadAsyncAll=0x400,
    37 	EFileWriteBuffered	=0x00000800,
    38 	EFileWriteDirectIO	=0x00001000,
    39 	EFileReadBuffered	=0x00002000,
    40 	EFileReadDirectIO	=0x00004000,
    41 	EFileReadAheadOn	=0x00008000,
    42 	EFileReadAheadOff	=0x00010000
    43 
    44 };
    45 
    46 class RFs
    47 	{
    48 public:
    49 	TInt Connect(TInt aSlots=-1) { (void)aSlots; return 0; }
    50 	void Close() {}
    51 	};
    52 
    53 #endif