* Sync up to trunk r55544.
[reactos.git] / base / system / diskpart / active.c
1 /*
2 * PROJECT: ReactOS DiskPart
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/system/diskpart/active.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
11 BOOL active_main(INT argc, WCHAR **argv)
12 {
13 printf("\nActive\n");
14
15 return TRUE;
16 }
17
18 /*
19 * help_active():
20 * Shows the description and explains each argument type of the active command
21 */
22 VOID help_active(INT argc, WCHAR **argv)
23 {
24 PrintResourceString(IDS_HELP_CMD_ACTIVE);
25 }