Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 86 of file format.c.
Referenced by FormatPartitionPage().
{ NTSTATUS Status; if (!FileSystem->FormatFunc) return STATUS_NOT_SUPPORTED; FormatProgressBar = CreateProgressBar(6, yScreen - 14, xScreen - 7, yScreen - 10, 10, 24, TRUE, MUIGetString(STRING_FORMATTINGDISK)); ProgressSetStepCount(FormatProgressBar, 100); Status = FileSystem->FormatFunc(DriveRoot, FMIFS_HARDDISK, /* MediaFlag */ NULL, /* Label */ FileSystem->QuickFormat, /* QuickFormat */ 0, /* ClusterSize */ FormatCallback); /* Callback */ DestroyProgressBar(FormatProgressBar); FormatProgressBar = NULL; DPRINT("FormatPartition() finished with status 0x%08lx\n", Status); return Status; }