[NET] Remove the NAME, PRINT and SEND options because we will most likely never have a messenger service

This commit is contained in:
Eric Kohl 2021-02-07 13:45:25 +01:00
parent bb723c337a
commit 560b66a2d5
3 changed files with 101 additions and 329 deletions

View file

@ -86,13 +86,6 @@ INT cmdHelp(INT argc, WCHAR **argv)
return 0;
}
if (_wcsicmp(argv[2], L"NAME") == 0)
{
PrintNetMessage(MSG_NAME_SYNTAX);
PrintNetMessage(MSG_NAME_HELP);
return 0;
}
if (_wcsicmp(argv[2], L"PAUSE") == 0)
{
PrintNetMessage(MSG_PAUSE_SYNTAX);
@ -100,20 +93,6 @@ INT cmdHelp(INT argc, WCHAR **argv)
return 0;
}
if (_wcsicmp(argv[2], L"PRINT") == 0)
{
PrintNetMessage(MSG_PRINT_SYNTAX);
PrintNetMessage(MSG_PRINT_HELP);
return 0;
}
if (_wcsicmp(argv[2], L"SEND") == 0)
{
PrintNetMessage(MSG_SEND_SYNTAX);
PrintNetMessage(MSG_SEND_HELP);
return 0;
}
if (_wcsicmp(argv[2], L"SESSION") == 0)
{
PrintNetMessage(MSG_SESSION_SYNTAX);