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