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