reactos/base/system/diskpart/break.c
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

18 lines
456 B
C

/*
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/break.c
* PURPOSE: Manages all the partitions of the OS in
* an interactive way
* PROGRAMMERS: Lee Schroeder
*/
#include "diskpart.h"
BOOL break_main(INT argc, LPWSTR *argv)
{
printf("\nTODO: Add code later since Win 7 Home Premium doesn't have this feature.\n");
return TRUE;
}