[NET] Add help message for the NET USER command and move the IDS_GENERIC_PAGE string into the help messages.

This commit is contained in:
Eric Kohl 2019-03-10 08:59:32 +01:00
parent eaee5e840b
commit e2b8141eb6
2 changed files with 624 additions and 19 deletions

View file

@ -24,7 +24,6 @@ INT cmdHelp(INT argc, WCHAR **argv)
{
PrintNetMessage(MSG_ACCOUNTS_SYNTAX);
PrintNetMessage(MSG_ACCOUNTS_HELP);
ConResPuts(StdOut, IDS_GENERIC_PAGE);
return 0;
}
@ -41,14 +40,12 @@ INT cmdHelp(INT argc, WCHAR **argv)
{
PrintNetMessage(MSG_CONFIG_SERVER_SYNTAX);
PrintNetMessage(MSG_CONFIG_SERVER_HELP);
ConResPuts(StdOut, IDS_GENERIC_PAGE);
return 0;
}
else
{
PrintNetMessage(MSG_CONFIG_SYNTAX);
PrintNetMessage(MSG_CONFIG_HELP);
ConResPuts(StdOut, IDS_GENERIC_PAGE);
return 0;
}
}