imgtools/imglib/inc/fatdefines.h
changeset 640 ac0bbc1e5d79
parent 626 ac03b93ca9c4
child 654 7c11c3d8d025
equal deleted inserted replaced
639:0e65f93be3cb 640:ac0bbc1e5d79
   126 struct ConfigurableFatAttributes
   126 struct ConfigurableFatAttributes
   127 {
   127 {
   128     char iDriveVolumeLabel[12];
   128     char iDriveVolumeLabel[12];
   129     TInt64 iImageSize ;
   129     TInt64 iImageSize ;
   130     TUint16 iDriveSectorSize;
   130     TUint16 iDriveSectorSize;
   131     TUint8 iSectorPerCluster ;
   131     TUint32 iDriveClusterSize;
   132     TUint8 iDriveNoOfFATs;    
   132     TUint8 iDriveNoOfFATs;    
   133     ConfigurableFatAttributes():iImageSize(0),iDriveSectorSize(512),iSectorPerCluster(0),iDriveNoOfFATs(2){
   133     ConfigurableFatAttributes():iImageSize(0),iDriveSectorSize(512),iDriveClusterSize(0),iDriveNoOfFATs(2){
   134         memcpy(iDriveVolumeLabel,"NO NAME    \0",12);
   134         memcpy(iDriveVolumeLabel,"NO NAME    \0",12);
   135     }
   135     }
   136 };
   136 };
   137 #endif
   137 #endif