userlibandfileserver/fileserver/sfile/sf_utl.cpp
changeset 254 1560c419b176
parent 199 189ece41fa29
child 299 b5a01337d018
equal deleted inserted replaced
253:d37db4dcc88d 254:1560c419b176
  1148 	{
  1148 	{
  1149 
  1149 
  1150 	CActiveScheduler::Stop();
  1150 	CActiveScheduler::Stop();
  1151 	}
  1151 	}
  1152 
  1152 
       
  1153 
       
  1154 //---------------------------------------------------------------------------------------------------------------------------------
       
  1155 /**
       
  1156     formats a string to represent a drive section in the estart.txt file by its number. Like "DriveD"
       
  1157     @param  aDrvNum         drive number
       
  1158     @param  aSectionName    out: formatted string
       
  1159 */
       
  1160 void  F32Properties::GetDriveSection(TInt aDrvNum, TDes8& aSectionName)
       
  1161     {
       
  1162     ASSERT(aDrvNum >= EDriveA && aDrvNum <= EDriveZ);
       
  1163     _LIT8(KLitSectionNameDrive,"Drive%C");
       
  1164 	aSectionName.Format(KLitSectionNameDrive, 'A' + aDrvNum);
       
  1165     }
       
  1166 
       
  1167 
       
  1168 
       
  1169