1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS help utility 4 * FILE: base/applications/cmdutils/help/help.h 5 * PURPOSE: Provide help for command-line utilities 6 * PROGRAMMERS: Lee Schroeder (spaceseel at gmail dot com) 7 * Hermes Belusca-Maito (hermes.belusca@sfr.fr) 8 */ 9 10 #pragma once 11 12 #define CMDLINE_LENGTH 1024 13 14 /* 15 * Internal commands sorted by alphabetical order. 16 * WARNING: Keep this list in sync with base\shell\cmd\cmdtable.c 17 */ 18 LPCWSTR InternalCommands[] = 19 { 20 L"activate", 21 L"alias", 22 L"assoc", 23 L"attrib", 24 L"beep", 25 L"call", 26 L"cd", 27 L"chcp", 28 L"chdir", 29 L"choice", 30 L"cls", 31 L"cmd", 32 L"color", 33 L"copy", 34 L"date", 35 L"del", 36 L"delay", 37 L"delete", 38 L"dir", 39 L"dirs", 40 L"dirstack", 41 L"echo", 42 L"echoerr", 43 L"echos", 44 L"echoserr", 45 L"endlocal", 46 L"erase", 47 L"exit", 48 L"for", 49 L"free", 50 L"goto", 51 L"help", 52 L"history", 53 L"if", 54 L"label", 55 L"md", 56 L"memory", 57 L"mkdir", 58 L"mklink", 59 L"move", 60 L"msgbox", 61 L"path", 62 L"pause", 63 L"popd", 64 L"prompt", 65 L"pushd", 66 L"rd", 67 L"rem", 68 L"ren", 69 L"rename", 70 L"replace", 71 L"rmdir", 72 L"screen", 73 L"set", 74 L"setlocal", 75 L"shift", 76 L"start", 77 L"time", 78 L"timer", 79 L"title", 80 L"type", 81 L"ver", 82 L"verify", 83 L"vol", 84 L"window", 85 }; 86 87 /* EOF */ 88