[DISKPART] Implement the clean command

This commit is contained in:
Eric Kohl 2022-06-17 01:37:26 +02:00
parent 74870c1ae1
commit 2be7af18fe
14 changed files with 390 additions and 10 deletions

View file

@ -22,6 +22,7 @@
#include <winioctl.h>
#include <errno.h>
#include <strsafe.h>
#include <conutils.h>
@ -439,7 +440,16 @@ GetPrimaryPartitionCount(
NTSTATUS
DismountVolume(
IN PPARTENTRY PartEntry);
_In_ PPARTENTRY PartEntry);
PVOLENTRY
GetVolumeFromPartition(
_In_ PPARTENTRY PartEntry);
VOID
RemoveVolume(
_In_ PVOLENTRY VolumeEntry);
/* recover.c */
BOOL recover_main(INT argc, LPWSTR *argv);