mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 05:52:57 +00:00
[DISKPART] Implement the clean command
This commit is contained in:
parent
74870c1ae1
commit
2be7af18fe
14 changed files with 390 additions and 10 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue