equal
deleted
inserted
replaced
|
1 // Copyright (c) 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 the License "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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef RFSYDEBUG_H |
|
17 #define RFSYDEBUG_H |
|
18 |
|
19 class RFsyDebug |
|
20 { |
|
21 public: |
|
22 static const TUint32 KMntProp_DisableALL = 0xFFFFFFFF; //-- disable all operations |
|
23 |
|
24 static const TUint32 KMntProp_EnableALL = 0x00000000; //-- enable all operations |
|
25 static const TUint32 KMntProp_Disable_FsInfo = 0x00000001; //-- mask for disabling/enabling FSInfo information |
|
26 static const TUint32 KMntProp_Disable_FatBkGndScan = 0x00000002; //-- mask for disabling/enabling FAT background scanner |
|
27 |
|
28 RFsyDebug(TInt iDriveNo); |
|
29 ~RFsyDebug(); |
|
30 void Set(TUint32 aFlags); |
|
31 void DisableAll(); |
|
32 |
|
33 private: |
|
34 TInt iDriveNo; |
|
35 }; |
|
36 |
|
37 #endif |