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