mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
237 lines
6.3 KiB
C
237 lines
6.3 KiB
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS net command
|
|
* FILE: base/applications/network/net/help.c
|
|
* PURPOSE:
|
|
*
|
|
* PROGRAMMERS: Magnus Olsen (greatlord@reactos.org)
|
|
*/
|
|
|
|
#include "net.h"
|
|
|
|
INT cmdHelp(INT argc, WCHAR **argv)
|
|
{
|
|
ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
|
|
|
|
/*
|
|
if (argc != 3)
|
|
{
|
|
ConResPuts(StdOut, IDS_HELP_SYNTAX);
|
|
return 0;
|
|
}
|
|
*/
|
|
if (_wcsicmp(argv[2], L"ACCOUNTS") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_SYNTAX);
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_HELP_1);
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_HELP_2);
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_HELP_3);
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_HELP_4);
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_HELP_5);
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_HELP_6);
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_HELP_7);
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_HELP_8);
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_HELP_9);
|
|
ConResPuts(StdOut, IDS_ACCOUNTS_HELP_10);
|
|
ConResPuts(StdOut, IDS_GENERIC_PAGE);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"COMPUTER") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_COMPUTER_SYNTAX);
|
|
ConResPuts(StdOut, IDS_COMPUTER_HELP_1);
|
|
ConResPuts(StdOut, IDS_COMPUTER_HELP_2);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"CONFIG") == 0)
|
|
{
|
|
if ((argc > 3) && (_wcsicmp(argv[3], L"SERVER") == 0))
|
|
{
|
|
ConResPuts(StdOut, IDS_CONFIG_SERVER_SYNTAX);
|
|
ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_1);
|
|
ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_2);
|
|
ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_3);
|
|
ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_4);
|
|
ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_5);
|
|
ConResPuts(StdOut, IDS_GENERIC_PAGE);
|
|
return 0;
|
|
}
|
|
else
|
|
{
|
|
ConResPuts(StdOut, IDS_CONFIG_SYNTAX);
|
|
ConResPuts(StdOut, IDS_CONFIG_HELP_1);
|
|
ConResPuts(StdOut, IDS_CONFIG_HELP_2);
|
|
ConResPuts(StdOut, IDS_GENERIC_PAGE);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"CONTINUE") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_CONTINUE_SYNTAX);
|
|
ConResPuts(StdOut, IDS_CONTINUE_HELP_1);
|
|
ConResPuts(StdOut, IDS_CONTINUE_HELP_2);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"FILE") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_FILE_SYNTAX);
|
|
ConResPuts(StdOut, IDS_FILE_HELP);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"GROUP") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_GROUP_SYNTAX);
|
|
ConResPuts(StdOut, IDS_GROUP_HELP_1);
|
|
ConResPuts(StdOut, IDS_GROUP_HELP_2);
|
|
ConResPuts(StdOut, IDS_GROUP_HELP_3);
|
|
ConResPuts(StdOut, IDS_GROUP_HELP_4);
|
|
ConResPuts(StdOut, IDS_GROUP_HELP_5);
|
|
ConResPuts(StdOut, IDS_GROUP_HELP_6);
|
|
ConResPuts(StdOut, IDS_GROUP_HELP_7);
|
|
ConResPuts(StdOut, IDS_GENERIC_PAGE);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"HELPMSG") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_HELPMSG_SYNTAX);
|
|
ConResPuts(StdOut, IDS_HELPMSG_HELP_1);
|
|
ConResPuts(StdOut, IDS_HELPMSG_HELP_2);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"LOCALGROUP") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_LOCALGROUP_SYNTAX);
|
|
ConResPuts(StdOut, IDS_LOCALGROUP_HELP_1);
|
|
ConResPuts(StdOut, IDS_LOCALGROUP_HELP_2);
|
|
ConResPuts(StdOut, IDS_LOCALGROUP_HELP_3);
|
|
ConResPuts(StdOut, IDS_LOCALGROUP_HELP_4);
|
|
ConResPuts(StdOut, IDS_LOCALGROUP_HELP_5);
|
|
ConResPuts(StdOut, IDS_LOCALGROUP_HELP_6);
|
|
ConResPuts(StdOut, IDS_LOCALGROUP_HELP_7);
|
|
ConResPuts(StdOut, IDS_GENERIC_PAGE);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"NAME") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_NAME_SYNTAX);
|
|
ConResPuts(StdOut, IDS_NAME_HELP);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"PAUSE") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_PAUSE_SYNTAX);
|
|
ConResPuts(StdOut, IDS_PAUSE_HELP_1);
|
|
ConResPuts(StdOut, IDS_PAUSE_HELP_2);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"PRINT") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_PRINT_SYNTAX);
|
|
ConResPuts(StdOut, IDS_PRINT_HELP);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"SEND") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_SEND_SYNTAX);
|
|
ConResPuts(StdOut, IDS_SEND_HELP);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"SESSION") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_SESSION_SYNTAX);
|
|
ConResPuts(StdOut, IDS_SESSION_HELP);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"SHARE") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_SHARE_SYNTAX);
|
|
ConResPuts(StdOut, IDS_SHARE_HELP);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"START") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_START_SYNTAX);
|
|
ConResPuts(StdOut, IDS_START_HELP_1);
|
|
ConResPuts(StdOut, IDS_START_HELP_2);
|
|
ConResPuts(StdOut, IDS_START_HELP_3);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"STATISTICS") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_STATISTICS_SYNTAX);
|
|
ConResPuts(StdOut, IDS_STATISTICS_HELP_1);
|
|
ConResPuts(StdOut, IDS_STATISTICS_HELP_2);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"STOP") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_STOP_SYNTAX);
|
|
ConResPuts(StdOut, IDS_STOP_HELP_1);
|
|
ConResPuts(StdOut, IDS_STOP_HELP_2);
|
|
ConResPuts(StdOut, IDS_STOP_HELP_3);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"TIME") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_TIME_SYNTAX);
|
|
ConResPuts(StdOut, IDS_TIME_HELP);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"USE") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_USE_SYNTAX);
|
|
ConResPuts(StdOut, IDS_USE_HELP);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"USER") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_USER_SYNTAX);
|
|
ConResPuts(StdOut, IDS_USER_HELP);
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"VIEW") == 0)
|
|
{
|
|
ConResPuts(StdOut, IDS_VIEW_SYNTAX);
|
|
ConResPuts(StdOut, IDS_VIEW_HELP);
|
|
return 0;
|
|
}
|
|
|
|
#if 0
|
|
if (_wcsicmp(argv[2], L"SERVICES") == 0)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
if (_wcsicmp(argv[2], L"SYNTAX") == 0)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
ConResPuts(StdOut, IDS_HELP_SYNTAX);
|
|
ConResPuts(StdOut, IDS_HELP_HELP_1);
|
|
ConResPuts(StdOut, IDS_HELP_HELP_2);
|
|
|
|
return 0;
|
|
}
|
|
|