equal
deleted
inserted
replaced
23 #define FILESYSTEMINTERFACE_H |
23 #define FILESYSTEMINTERFACE_H |
24 |
24 |
25 #include "directory.h" |
25 #include "directory.h" |
26 #include <fstream> |
26 #include <fstream> |
27 |
27 |
28 typedef std::ofstream Ofstream; |
28 typedef ofstream Ofstream; |
29 |
29 |
30 //default image size in Bytes |
30 //default image size in Bytes |
31 const int KDefaultImageSize=50*1024*1024; |
31 const int KDefaultImageSize=50*1024*1024; |
32 |
32 |
33 //enum representing the file system type |
33 //enum representing the file system type |
50 }; |
50 }; |
51 |
51 |
52 // Configurable FAT attributes |
52 // Configurable FAT attributes |
53 struct ConfigurableFatAttributes |
53 struct ConfigurableFatAttributes |
54 { |
54 { |
55 String iDriveVolumeLabel; |
55 string iDriveVolumeLabel; |
56 unsigned int iDriveSectorSize; |
56 unsigned int iDriveSectorSize; |
57 unsigned int iDriveNoOfFATs; |
57 unsigned int iDriveNoOfFATs; |
58 |
58 |
59 ConfigurableFatAttributes(); |
59 ConfigurableFatAttributes(); |
60 }; |
60 }; |