reactos/base/applications/network/netsh/resource.h
Eric Kohl d8f9f7f256 [NETSH] Replace the wine stub by a slightly more functional version
- Implement a basic command interpreter.
- Add basic support for helper dlls and contexts.
- Add interactive help system with context support.

Everything is still under construction and subject to change.
2023-07-15 12:27:09 +02:00

37 lines
1.1 KiB
C

/*
* PROJECT: ReactOS NetSh
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* PURPOSE: Network Shell resource id header file
* COPYRIGHT: Copyright 2023 Eric Kohl <eric.kohl@reactos.org>
*/
#pragma once
#define IDS_NONE -1
#define IDS_APP_USAGE 100
#define IDS_APP_PROMPT 101
#define IDS_INVALID_COMMAND 102
#define IDS_OPEN_FAILED 103
#define IDS_INVALID_SYNTAX 104
#define IDS_HELP_HEADER 200
#define IDS_SUBCONTEXT_HEADER 201
#define IDS_HLP_EXIT 300
#define IDS_HLP_EXIT_EX 301
#define IDS_HLP_HELP 302
#define IDS_HLP_HELP_EX 303
#define IDS_HLP_UP 304
#define IDS_HLP_UP_EX 305
#define IDS_HLP_ADD_HELPER 310
#define IDS_HLP_ADD_HELPER_EX 311
#define IDS_HLP_DEL_HELPER 312
#define IDS_HLP_DEL_HELPER_EX 313
#define IDS_HLP_SHOW_HELPER 314
#define IDS_HLP_SHOW_HELPER_EX 315
#define IDS_HLP_GROUP_ADD 320
#define IDS_HLP_GROUP_DELETE 321
#define IDS_HLP_GROUP_SHOW 322