mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
d8f9f7f256
- 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.
15 lines
320 B
Text
15 lines
320 B
Text
#include <windef.h>
|
|
|
|
#include "resource.h"
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "Net Shell"
|
|
#define REACTOS_STR_INTERNAL_NAME "netsh"
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "netsh.exe"
|
|
#include <reactos/version.rc>
|
|
|
|
/* UTF-8 */
|
|
#pragma code_page(65001)
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
#include "lang/en-US.rc"
|
|
#endif
|