diff -r 2bb754abd467 -r 0ffb4e86fcc9 userlibandfileserver/fileserver/inc/f32fsys.h --- a/userlibandfileserver/fileserver/inc/f32fsys.h Mon Jun 21 17:12:14 2010 +0300 +++ b/userlibandfileserver/fileserver/inc/f32fsys.h Thu Jul 15 20:11:42 2010 +0300 @@ -508,7 +508,7 @@ void DoEntryL(const TDesC& aName,TEntry& anEntry); void ReadSectionL(const TDesC& aName,TInt64 aPos,TAny* aTrg,TInt aLength,const RMessagePtr2& aMessage); TInt ValidateShare(CFileCB& aFile,TShare aReqShare); - TInt CheckAttributes(const TDesC& aName,TUint& aSetAttMask,TUint& aClearAttMask); + TInt CheckAttributes(TUint& aSetAttMask,TUint& aClearAttMask); TBool IsExtensionMounted(CProxyDriveFactory* aFactory); CFileCB* LocateFile(const TDesC& aName); CFileCache* LocateClosedFile(const TDesC& aName, TBool aResurrect = ETrue); @@ -2474,6 +2474,7 @@ +class CProxyDriveBody; // fwd ref /** @publishedPartner @released @@ -2499,6 +2500,10 @@ IMPORT_C virtual TInt GetLastErrorInfo(TDes8& aErrorInfo); inline TInt LocalBufferSupport(); + + TInt SetAndOpenLibrary(RLibrary aLibrary); + RLibrary GetLibrary(); + // pure virtual @@ -2742,7 +2747,9 @@ private: CMountCB* iMount; - TUint32 iReserved; // Reserved for future expansion + CProxyDriveBody* iBody; + +friend class LocalDrives; };