2011-09-24 10:33:33 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS DiskPart
|
|
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
2015-09-18 10:13:50 +00:00
|
|
|
* FILE: base/system/diskpart/online.c
|
2011-09-24 10:33:33 +00:00
|
|
|
* PURPOSE: Manages all the partitions of the OS in
|
|
|
|
* an interactive way
|
|
|
|
* PROGRAMMERS: Lee Schroeder
|
|
|
|
*/
|
2014-01-13 13:07:50 +00:00
|
|
|
|
2011-09-24 10:33:33 +00:00
|
|
|
#include "diskpart.h"
|
|
|
|
|
2013-05-29 11:40:43 +00:00
|
|
|
BOOL online_main(INT argc, LPWSTR *argv)
|
2011-09-24 10:33:33 +00:00
|
|
|
{
|
2013-05-29 11:40:43 +00:00
|
|
|
PrintResourceString(IDS_HELP_CMD_ONLINE);
|
2011-09-24 10:33:33 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|