[USB-BRINGUP-TRUNK]
[reactos.git] / base / system / diskpart / attach.c
1 /*
2 * PROJECT: ReactOS DiskPart
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/system/diskpart/attach.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 attach_main(INT argc, WCHAR **argv)
11 {
12 return TRUE;
13 }
14
15
16 /*
17 * help_attach():
18 * Shows the description and explains each argument type of the attach command
19 */
20 VOID help_attach(INT argc, WCHAR **argv)
21 {
22 PrintResourceString(IDS_HELP_CMD_ATTACH);
23 }