Fixed bug in COPY command
[reactos.git] / rosapps / cmd / config.h
1 /*
2 * CONFIG.H - Used to configure what will be compiled into the shell.
3 *
4 *
5 * History:
6 *
7 * 27 Jul 1998 - John P. Price
8 * started.
9 *
10 */
11
12 /* Define only if used under ReactOS */
13 #define __REACTOS__
14
15 #ifndef _CONFIG_H_INCLUDED_
16 #define _CONFIG_H_INCLUDED_
17
18
19 #ifndef __REACTOS__
20 #define WIN32_LEAN_AND_MEAN
21 #endif /* __REACTOS__ */
22
23
24 /* Define to enable debugging code */
25 //#define _DEBUG
26
27
28 /* Define to enable the alias command, and aliases.*/
29 #define FEATURE_ALIASES
30
31
32 /* Define to enable history */
33 #define FEATURE_HISTORY
34
35 /*Define to enable history wrap (4nt's style)*/
36 #define WRAP_HISTORY
37
38
39 /* Define one of these to enable filename completion */
40 #define FEATURE_UNIX_FILENAME_COMPLETION
41 /* #define FEATURE_4NT_FILENAME_COMPLETION */
42
43
44 /* Define to enable the directory stack */
45 #define FEATURE_DIRECTORY_STACK
46
47
48 /* Define to activate redirections and piping */
49 #define FEATURE_REDIRECTION
50
51
52 /* Define one of these to select the used locale. */
53 /* (date and time formats etc.) used in DATE, TIME, */
54 /* DIR, PROMPT etc. */
55 #ifdef __REACTOS__
56 #define LOCALE_DEFAULT
57 #else
58 #define LOCALE_WINDOWS /* System locale */
59 /* #define LOCALE_GERMAN */ /* German locale */
60 /* #define LOCALE_DEFAULT */ /* United States locale */
61 #endif
62
63 #ifndef __REACTOS__
64 #define INCLUDE_CMD_ACTIVATE
65 #endif
66 #define INCLUDE_CMD_ATTRIB
67 #define INCLUDE_CMD_CHCP
68 #define INCLUDE_CMD_CHDIR
69 #define INCLUDE_CMD_CHOICE
70 #define INCLUDE_CMD_CLS
71 #define INCLUDE_CMD_COLOR
72 #define INCLUDE_CMD_COPY
73 #define INCLUDE_CMD_DATE
74 #define INCLUDE_CMD_DEL
75 #define INCLUDE_CMD_DELAY
76 #define INCLUDE_CMD_DIR
77 #define INCLUDE_CMD_FREE
78 #define INCLUDE_CMD_LABEL
79 #define INCLUDE_CMD_MEMORY
80 #define INCLUDE_CMD_MKDIR
81 #define INCLUDE_CMD_MOVE
82 #ifndef __REACTOS__
83 #define INCLUDE_CMD_MSGBOX
84 #endif
85 #define INCLUDE_CMD_PATH
86 #define INCLUDE_CMD_PROMPT
87 #define INCLUDE_CMD_RMDIR
88 #define INCLUDE_CMD_RENAME
89 #define INCLUDE_CMD_SCREEN
90 #define INCLUDE_CMD_SET
91 #define INCLUDE_CMD_START
92 #define INCLUDE_CMD_TIME
93 #define INCLUDE_CMD_TIMER
94 #define INCLUDE_CMD_TITLE
95 #define INCLUDE_CMD_TYPE
96 #define INCLUDE_CMD_VER
97 #define INCLUDE_CMD_REM
98 #define INCLUDE_CMD_PAUSE
99 #define INCLUDE_CMD_BEEP
100 #define INCLUDE_CMD_VERIFY
101 #define INCLUDE_CMD_VOL
102 #ifndef __REACTOS__
103 #define INCLUDE_CMD_WINDOW
104 #endif
105
106 #endif /* _CONFIG_H_INCLUDED_ */