0
+ − 1
// Copyright (c) 1995-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
// Public header file for "AutoMounter" file system. Contains this file system name and optional file system - specific declarations.
+ − 15
//
+ − 16
//
+ − 17
+ − 18
/**
+ − 19
@file
+ − 20
@publishedAll
+ − 21
@released
+ − 22
*/
+ − 23
+ − 24
#if !defined(__FILESYSTEM_AUTOMOUNTER_H__)
+ − 25
#define __FILESYSTEM_AUTOMOUNTER_H__
+ − 26
+ − 27
+ − 28
#if !defined(__F32FILE_H__)
+ − 29
#include <f32file.h>
+ − 30
#endif
+ − 31
+ − 32
+ − 33
+ − 34
/**
+ − 35
automounter filesystem name, which shall be provided to RFs::MountFileSystem() and is returned by RFs::FileSystemName() if
+ − 36
this file system is mounted on the drive. The literal is case-insensitive.
+ − 37
@see RFs::MountFileSystem()
+ − 38
@see RFs::FileSystemName()
+ − 39
*/
+ − 40
_LIT(KFileSystemName_AutoMounter, "automounter");
+ − 41
+ − 42
+ − 43
//------------------------------------------------------------------------------
+ − 44
+ − 45
namespace FileSystem_AUTOMOUNTER
+ − 46
{
+ − 47
//-- some file system specific declarations can be placed here
+ − 48
+ − 49
}//FileSystem_AUTOMOUNTER
+ − 50
+ − 51
+ − 52
+ − 53
+ − 54
+ − 55
+ − 56
#endif //__FILESYSTEM_AUTOMOUNTER_H__
+ − 57
+ − 58
+ − 59
+ − 60
+ − 61
+ − 62
+ − 63
+ − 64
+ − 65
+ − 66
+ − 67
+ − 68
+ − 69
+ − 70
+ − 71