Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 38 of file format.c.
Referenced by FormatPartition().
{ switch (Command) { case PROGRESS: { PULONG Percent; Percent = (PULONG)Argument; DPRINT("%lu percent completed\n", *Percent); ProgressSetStep(FormatProgressBar, *Percent); break; } /*case OUTPUT: { PTEXTOUTPUT Output; output = (PTEXTOUTPUT) Argument; DPRINT("%s\n", output->Output); break; }*/ case DONE: { /*PBOOLEAN Success;*/ DPRINT("Done\n"); /*Success = (PBOOLEAN)Argument; if (*Success == FALSE) { DPRINT("FormatEx was unable to complete successfully.\n\n"); }*/ break; } default: DPRINT("Unknown callback %lu\n", (ULONG)Command); break; } return TRUE; }