Synchronize with trunk r58606.
[reactos.git] / base / system / diskpart / online.c
1 /*
2 * PROJECT: ReactOS DiskPart
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/system/diskpart/online.h
5 * PURPOSE: Manages all the partitions of the OS in
6 * an interactive way
7 * PROGRAMMERS: Lee Schroeder
8 */
9 #include "diskpart.h"
10
11 BOOL online_main(INT argc, WCHAR **argv)
12 {
13 help_online(0, NULL);
14
15 return TRUE;
16 }
17
18
19 VOID help_online(INT argc, WCHAR **argv)
20 {
21 PrintResourceString(IDS_HELP_CMD_ONLINE);
22 }