fix a few more of the patches for gcc 4.8.3. patch now applies cleanly
[AROS.git] / workbench / utilities / Installer / cmdlist.h
bloba3846898da2cf45a0ee4f36ee1acafa5e2fbb9cc
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
4 */
5 #ifndef _CMDLIST_H
6 #define _CMDLIST_H
8 #ifndef _EXECUTE_H
9 # include "execute.h"
10 #endif
12 struct CommandList internal_commands[] =
14 {"abort", _ABORT },
15 {"all", _ALL },
16 {"append", _APPEND },
17 {"askbool", _ASKBOOL },
18 {"askchoice", _ASKCHOICE },
19 {"askdir", _ASKDIR },
20 {"askdisk", _ASKDISK },
21 {"askfile", _ASKFILE },
22 {"asknumber", _ASKNUMBER },
23 {"askoptions", _ASKOPTIONS },
24 {"askstring", _ASKSTRING },
25 {"assigns", _ASSIGNS },
26 {"cat", _CAT },
27 {"choices", _CHOICES },
28 {"command", _COMMAND },
29 {"complete", _COMPLETE },
30 {"confirm", _CONFIRM },
31 {"copyfiles", _COPYFILES },
32 {"copylib", _COPYLIB },
33 {"database", _DATABASE },
34 {"debug", _DEBUG },
35 {"default", _DEFAULT },
36 {"delete", _DELETE },
37 {"delopts", _DELOPTS },
38 {"dest", _DEST },
39 {"disk", _DISK },
40 {"earlier", _EARLIER },
41 {"execute", _EXECUTE },
42 {"exists", _EXISTS },
43 {"exit", _EXIT },
44 {"expandpath", _EXPANDPATH },
45 {"fileonly", _FILEONLY },
46 {"files", _FILES },
47 {"fonts", _FONTS },
48 {"foreach", _FOREACH },
49 {"getassign", _GETASSIGN },
50 {"getdevice", _GETDEVICE },
51 {"getdiskspace", _GETDISKSPACE },
52 {"getenv", _GETENV },
53 {"getsize", _GETSIZE },
54 {"getsum", _GETSUM },
55 {"getversion", _GETVERSION },
56 {"help", _HELP },
57 {"iconinfo", _ICONINFO },
58 {"if", _IF },
59 {"include", _INCLUDE },
60 {"infos", _INFOS },
61 {"makeassign", _MAKEASSIGN },
62 {"makedir", _MAKEDIR },
63 {"message", _MESSAGE },
64 {"newname", _NEWNAME },
65 {"newpath", _NEWPATH },
66 {"nogauge", _NOGAUGE },
67 {"noposition", _NOPOSITION },
68 {"onerror", _ONERROR },
69 {"optional", _OPTIONAL },
70 {"pathonly", _PATHONLY },
71 {"patmatch", _PATMATCH },
72 {"pattern", _PATTERN },
73 {"procedure", _PROCEDURE },
74 {"prompt", _PROMPT },
75 {"protect", _PROTECT },
76 {"quiet", _QUIET },
77 {"range", _RANGE },
78 {"rename", _RENAME },
79 {"resident", _RESIDENT },
80 {"rexx", _REXX },
81 {"run", _RUN },
82 {"safe", _SAFE },
83 {"select", _SELECT },
84 {"set", _SET },
85 {"setdefaulttool", _SETDEFAULTTOOL },
86 {"setposition", _SETPOSITION },
87 {"setstack", _SETSTACK },
88 {"settooltype", _SETTOOLTYPE },
89 {"shiftleft", _SHIFTLEFT },
90 {"shiftrght", _SHIFTRGHT },
91 {"source", _SOURCE },
92 {"startup", _STARTUP },
93 {"strlen", _STRLEN },
94 {"substr", _SUBSTR },
95 {"swapcolors", _SWAPCOLORS },
96 {"symbolset", _SYMBOLSET },
97 {"symbolval", _SYMBOLVAL },
98 {"tackon", _TACKON },
99 {"textfile", _TEXTFILE },
100 {"tooltype", _TOOLTYPE },
101 {"transcript", _TRANSCRIPT },
102 {"trap", _TRAP },
103 {"until", _UNTIL },
104 {"user", _USER },
105 {"welcome", _WELCOME },
106 {"while", _WHILE },
107 {"working", _WORKING },
109 {"*", _TIMES },
110 {"+", _PLUS },
111 {"-", _MINUS },
112 {"/", _DIV },
113 {"<", _LESS },
114 {"<=", _LESSEQ },
115 {"<>", _DIFF },
116 {"=", _EQUAL },
117 {">", _MORE },
118 {">=", _MOREEQ },
119 {"and", _AND },
120 {"bitand", _BITAND },
121 {"bitnot", _BITNOT },
122 {"bitor", _BITOR },
123 {"bitxor", _BITXOR },
124 {"in", _IN },
125 {"not", _NOT },
126 {"or", _OR },
127 {"xor", _XOR },
128 {"", 0 }
132 #endif /* _EXECUTE_H */