Branching for 0.3.15 release after two days of no response from a certain sphere...
[reactos.git] / base / system / diskpart / compact.c
1 /*
2 * PROJECT: ReactOS DiskPart
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/system/diskpart/compact.c
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 compact_main(INT argc, WCHAR **argv)
12 {
13 return 0;
14 }
15
16
17 /*
18 * help_compact():
19 * Shows the description and explains each argument type of the compact command
20 */
21 VOID help_compact(INT argc, WCHAR **argv)
22 {
23 PrintResourceString(IDS_HELP_CMD_COMPACT);
24 }