[NET] Reorganize and improve the help texts (3/X)

- Add help texts for the START and STOP commands.
- Add text for the CONFIG command.
This commit is contained in:
Eric Kohl 2018-04-02 14:53:12 +02:00
parent b51b99e766
commit 925176af71
12 changed files with 142 additions and 56 deletions

View file

@ -29,7 +29,11 @@ INT cmdStop(INT argc, WCHAR **argv)
{
if (_wcsicmp(argv[i], L"/help") == 0)
{
ConResPuts(StdOut, IDS_STOP_HELP);
ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
ConResPuts(StdOut, IDS_STOP_SYNTAX);
ConResPuts(StdOut, IDS_STOP_HELP_1);
ConResPuts(StdOut, IDS_STOP_HELP_2);
ConResPuts(StdOut, IDS_STOP_HELP_3);
return 1;
}
}