Changeset 93084 in vbox
- Timestamp:
- Dec 27, 2021 4:54:07 AM (3 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/fsvfs.h
r82968 r93084 121 121 RTDECL(int) RTFsFatVolFormat144(RTVFSFILE hVfsFile, bool fQuick); 122 122 123 /** 124 * Formats a 2.88MB floppy image. 125 * 126 * @returns IPRT status code. 127 * @param hVfsFile The image. Will be grown to 1.44MB if 128 * necessary. 129 * @param fQuick Whether to quick format the floppy or not. 130 */ 131 RTDECL(int) RTFsFatVolFormat288(RTVFSFILE hVfsFile, bool fQuick); 123 132 124 133 -
trunk/src/VBox/Runtime/common/fs/fatvfs.cpp
r92915 r93084 6239 6239 6240 6240 /** 6241 * Formats a 2.88MB floppy image. 6242 * 6243 * @returns IPRT status code. 6244 * @param hVfsFile The image. 6245 */ 6246 RTDECL(int) RTFsFatVolFormat288(RTVFSFILE hVfsFile, bool fQuick) 6247 { 6248 return RTFsFatVolFormat(hVfsFile, 0 /*offVol*/, 2949120, fQuick ? RTFSFATVOL_FMT_F_QUICK : RTFSFATVOL_FMT_F_FULL, 6249 512 /*cbSector*/, 2 /*cSectorsPerCluster*/, RTFSFATTYPE_FAT12, 2 /*cHeads*/, 36 /*cSectors*/, 6250 0xf0 /*bMedia*/, 224 /*cRootDirEntries*/, 0 /*cHiddenSectors*/, NULL /*pErrInfo*/); 6251 } 6252 6253 6254 /** 6241 6255 * @interface_method_impl{RTVFSCHAINELEMENTREG,pfnValidate} 6242 6256 */
Note:
See TracChangeset
for help on using the changeset viewer.