xref: /reactos/base/system/diskpart/repair.c (revision c2c66aff)
1 /*
2  * PROJECT:         ReactOS DiskPart
3  * LICENSE:         GPL - See COPYING in the top level directory
4  * FILE:            base/system/diskpart/repair.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 
repair_main(INT argc,LPWSTR * argv)11 BOOL repair_main(INT argc, LPWSTR *argv)
12 {
13     ConPuts(StdOut, L"\nTODO: Add code later since Win 7 Home Premium doesn't have this feature.\n");
14     return TRUE;
15 }
16