equal
deleted
inserted
replaced
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 |