First public contribution.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #include "T_TestFSY1.h"
25 _LIT(KFileSystemName, "TestFileSystem1");
27 const TInt KMajorVersionNumber=1;
28 const TInt KMinorVersionNumber=0;
31 CFileSystem* CTestFileSystem1::NewL()
36 return (new (ELeave) CTestFileSystem1);
39 CTestFileSystem1::CTestFileSystem1()
46 TInt CTestFileSystem1::Install()
48 // Install the file system
51 iVersion=TVersion(KMajorVersionNumber, KMinorVersionNumber, KF32BuildVersionNumber);
52 return(SetName(&KFileSystemName));
54 TBool CTestFileSystem1::IsExtensionSupported() const
56 // Return false to disallow mount extension on this file system
64 EXPORT_C CFileSystem* CreateFileSystem()
66 // Create a new file system
69 return(CTestFileSystem1::NewL());