xref: /reactos/base/system/diskpart/delete.c (revision 447ef2aa)
1 /*
2  * PROJECT:         ReactOS DiskPart
3  * LICENSE:         GPL - See COPYING in the top level directory
4  * FILE:            base/system/diskpart/delete.c
5  * PURPOSE:         Manages all the partitions of the OS in an interactive way.
6  * PROGRAMMERS:     Lee Schroeder
7  */
8 
9 #include "diskpart.h"
10 
11 BOOL
12 DeleteDisk(
13     _In_ INT argc,
14     _In_ PWSTR *argv)
15 {
16     return TRUE;
17 }
18 
19 BOOL
20 DeletePartition(
21     _In_ INT argc,
22     _In_ PWSTR *argv)
23 {
24     return TRUE;
25 }
26 
27 BOOL
28 DeleteVolume(
29     _In_ INT argc,
30     _In_ PWSTR *argv)
31 {
32     return TRUE;
33 }
34