mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:31:40 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
87
base/applications/cmdutils/help/help.h
Normal file
87
base/applications/cmdutils/help/help.h
Normal file
|
@ -0,0 +1,87 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS help utility
|
||||
* FILE: base/applications/cmdutils/help/help.h
|
||||
* PURPOSE: Provide help for command-line utilities
|
||||
* PROGRAMMERS: Lee Schroeder (spaceseel at gmail dot com)
|
||||
* Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#define CMDLINE_LENGTH 1024
|
||||
|
||||
/*
|
||||
* Internal commands sorted by alphabetical order.
|
||||
* WARNING: Keep this list in sync with base\shell\cmd\cmdtable.c
|
||||
*/
|
||||
LPCWSTR InternalCommands[] =
|
||||
{
|
||||
L"activate",
|
||||
L"alias",
|
||||
L"assoc",
|
||||
L"attrib",
|
||||
L"beep",
|
||||
L"call",
|
||||
L"cd",
|
||||
L"chcp",
|
||||
L"chdir",
|
||||
L"choice",
|
||||
L"cls",
|
||||
L"cmd",
|
||||
L"color",
|
||||
L"copy",
|
||||
L"date",
|
||||
L"del",
|
||||
L"delay",
|
||||
L"delete",
|
||||
L"dir",
|
||||
L"dirs",
|
||||
L"dirstack",
|
||||
L"echo",
|
||||
L"echoerr",
|
||||
L"echos",
|
||||
L"echoserr",
|
||||
L"endlocal",
|
||||
L"erase",
|
||||
L"exit",
|
||||
L"for",
|
||||
L"free",
|
||||
L"goto",
|
||||
L"help",
|
||||
L"history",
|
||||
L"if",
|
||||
L"label",
|
||||
L"md",
|
||||
L"memory",
|
||||
L"mkdir",
|
||||
L"mklink",
|
||||
L"move",
|
||||
L"msgbox",
|
||||
L"path",
|
||||
L"pause",
|
||||
L"popd",
|
||||
L"prompt",
|
||||
L"pushd",
|
||||
L"rd",
|
||||
L"rem",
|
||||
L"ren",
|
||||
L"rename",
|
||||
L"replace",
|
||||
L"rmdir",
|
||||
L"screen",
|
||||
L"set",
|
||||
L"setlocal",
|
||||
L"shift",
|
||||
L"start",
|
||||
L"time",
|
||||
L"timer",
|
||||
L"title",
|
||||
L"type",
|
||||
L"ver",
|
||||
L"verify",
|
||||
L"vol",
|
||||
L"window",
|
||||
};
|
||||
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue