mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 14:51:00 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
14 lines
364 B
C
14 lines
364 B
C
/*
|
|
* PROJECT: ReactOS DiskPart
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: base/system/diskpart/retain.c
|
|
* PURPOSE: Manages all the partitions of the OS in
|
|
* an interactive way
|
|
* PROGRAMMERS: Lee Schroeder
|
|
*/
|
|
#include "diskpart.h"
|
|
|
|
BOOL retain_main(INT argc, LPWSTR *argv)
|
|
{
|
|
return TRUE;
|
|
}
|