/* Is the user trying to format filing system larger than
* 52 MBytes using the old filing system?
*/
if(Blocks > 101600 && !UseFFS)
{
if(FromShell)
Printf("You cannot format partitions larger than approximately 52 MBytes\nusing the old filing system. Use Fast File System instead.\n");
else
MyEasyRequest(Window,"You cannot format partitions larger than\napproximately 52 MBytes using the old\nfiling system. Use Fast File System\ninstead.","Proceed");
}
else
{
SHORT Result;
/* Give the user a last chance to abort the
* formatting.
*/
if(Query)
{
/* Display a special text if the
* data media to be formatted is not
* a standard 3½" disk.
*/
if(Blocks > 1760)
{
DisplayBeep(Window -> WScreen);
Result = MyEasyRequest(Window," Caution!\n\n\
Drive %s is not a standard-sized\n\
floppy disk drive but rather a hard-disk\n\
or high-density-floppy-disk drive.\n\n\
OK to format disk in drive\n\
%s\n\
(all data will be erased)?","OK|OK-Quick|Cancel",DriveNode -> VanillaNode . ln_Name,DriveNode -> VanillaNode . ln_Name);
}
else
Result = MyEasyRequest(Window,"OK to format disk in drive\n%s\n(all data will be erased)?","OK|OK-Quick|Cancel",DriveNode -> VanillaNode . ln_Name);