imgtools/imglib/inc/fatdefines.h
changeset 626 ac03b93ca9c4
parent 605 122d2b873fd1
child 654 7c11c3d8d025
equal deleted inserted replaced
625:a1925fb7753a 626:ac03b93ca9c4
   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