[USB-BRINGUP-TRUNK]
[reactos.git] / base / system / diskpart / automount.c
1 /*
2 * PROJECT: ReactOS DiskPart
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/system/diskpart/automount.c
5 * PURPOSE: Manages all the partitions of the OS in an interactive way
6 * PROGRAMMERS: Lee Schroeder
7 */
8 #include "diskpart.h"
9
10 BOOL automount_main(INT argc, WCHAR **argv)
11 {
12 printf("Automount\n");
13 return TRUE;
14 }
15
16 /*
17 * help_automount():
18 * Shows the description and explains each argument type of the automount command
19 */
20 VOID help_automount(INT argc, WCHAR **argv)
21 {
22 PrintResourceString(IDS_HELP_CMD_AUTOMOUNT);
23 }