userlibandfileserver/fileserver/sfat32/inc/sl_std.inl
changeset 109 b3a1d9898418
parent 90 947f0dc9f7a8
child 201 43365a9b78a3
equal deleted inserted replaced
102:ef2a444a7410 109:b3a1d9898418
   176     {
   176     {
   177     return iVolParam.NumberOfFats();
   177     return iVolParam.NumberOfFats();
   178     }
   178     }
   179 
   179 
   180 
   180 
   181 /** @return refrence to the fat table owned by the mount */
   181 /** @return reference to the fat table owned by the mount */
   182 CFatTable& CFatMountCB::FAT() const
   182 CFatTable& CFatMountCB::FAT() const
   183 	{
   183 	{
   184     return(*iFatTable);
   184     return(*iFatTable);
   185     }
   185     }
   186 
   186 
   187 /**
   187 /**
   188     @return refrence to the file system object that has produced this CFatMountCB
   188     @return reference to the file system object that has produced this CFatMountCB
   189 */
   189 */
   190 CFatFileSystem& CFatMountCB::FatFileSystem() const
   190 CFatFileSystem& CFatMountCB::FatFileSystem() const
   191 	{
   191 	{
   192     return (CFatFileSystem&)(*FileSystem()); //-- CMountCB::FileSystem() provides correct answer
   192     return (CFatFileSystem&)(*FileSystem()); //-- CMountCB::FileSystem() provides correct answer
   193     }
   193     }
   493 	{return((CFatMountCB&)Mount());}
   493 	{return((CFatMountCB&)Mount());}
   494 
   494 
   495 /**
   495 /**
   496 Returns the fat table used by the file system for this mount
   496 Returns the fat table used by the file system for this mount
   497 
   497 
   498 @return Refrence to the Fat table owned by the mount
   498 @return Reference to the Fat table owned by the mount
   499 */
   499 */
   500 CFatTable& CFatFileCB::FAT()
   500 CFatTable& CFatFileCB::FAT()
   501 	{return(FatMount().FAT());}
   501 	{return(FatMount().FAT());}
   502 
   502 
   503 /**
   503 /**