| 0 |      1 | // Copyright (c) 1996-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 | // erofs.fsy ROFS file system
 | 
|  |     15 | // 
 | 
|  |     16 | //
 | 
|  |     17 | 
 | 
|  |     18 | /**
 | 
|  |     19 |  @file
 | 
|  |     20 | */
 | 
|  |     21 | 
 | 
|  |     22 | OPTION CW   -w off
 | 
|  |     23 | 
 | 
|  |     24 | TARGET			erofs.fsy
 | 
|  |     25 | 
 | 
|  |     26 | TARGETTYPE		fsy
 | 
|  |     27 | 
 | 
|  |     28 | 
 | 
|  |     29 | SOURCEPATH	../srofs
 | 
|  |     30 | SOURCE		sr_rofs.cpp dircache.cpp
 | 
|  |     31 | OS_LAYER_SYSTEMINCLUDE_SYMBIAN
 | 
|  |     32 | SOURCEPATH 	.
 | 
|  |     33 | DOCUMENT	../group/release.txt
 | 
|  |     34 | 
 | 
|  |     35 | LIBRARY		 efile.lib efsrv.lib euser.lib
 | 
|  |     36 | 
 | 
|  |     37 | START WINS
 | 
|  |     38 | BASEADDRESS		0x61000000
 | 
|  |     39 | END
 | 
|  |     40 | 
 | 
|  |     41 | UID		0 0x100000d6
 | 
|  |     42 | VENDORID 0x70000001
 | 
|  |     43 | 
 | 
|  |     44 | unpagedcode
 | 
|  |     45 | 
 | 
|  |     46 | #include "../group/f32caps.mmh"  // Capabilities of File Server process
 | 
|  |     47 | #include "../group/f32.mmh"  	// Generic definitions for the whole f32 component
 | 
|  |     48 | SMPSAFE
 |