mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
1644f93c49
svn path=/trunk/; revision=391
102 lines
1.9 KiB
C
102 lines
1.9 KiB
C
/*
|
|
* CONFIG.H - Used to configure what will be compiled into the shell.
|
|
*
|
|
*
|
|
* History:
|
|
*
|
|
* 27 Jul 1998 - John P. Price
|
|
* started.
|
|
*
|
|
*/
|
|
|
|
#define __REACTOS__
|
|
|
|
#ifndef _CONFIG_H_INCLUDED_
|
|
#define _CONFIG_H_INCLUDED_
|
|
|
|
#ifndef __REACTOS__
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#endif /* __REACTOS__ */
|
|
|
|
|
|
/* JPP 20 Jul 1998 - define DEBUG to add debugging code */
|
|
#define DEBUG
|
|
|
|
|
|
/* Define to enable the alias command, and aliases.*/
|
|
#define FEATURE_ALIASES
|
|
|
|
|
|
/* Define to enable history */
|
|
#define FEATURE_HISTORY
|
|
|
|
|
|
/* Define one of these to enable filename completion */
|
|
#define FEATURE_UNIX_FILENAME_COMPLETION
|
|
/* #define FEATURE_4NT_FILENAME_COMPLETION */
|
|
|
|
|
|
/* Define to enable the directory stack */
|
|
#define FEATURE_DIRECTORY_STACK
|
|
|
|
|
|
/* Define to activate redirections and piping */
|
|
#define FEATURE_REDIRECTION
|
|
|
|
|
|
/* Define one of these to select the used locale. */
|
|
/* (date and time formats etc.) used in DATE, TIME */
|
|
/* DIR and PROMPT. */
|
|
#ifdef __REACTOS__
|
|
#define LOCALE_DEFAULT
|
|
#else
|
|
#define LOCALE_WINDOWS /* System locale */
|
|
/* #define LOCALE_GERMAN */ /* German locale */
|
|
/* #define LOCALE_DEFAULT */ /* United States locale */
|
|
#endif
|
|
|
|
#define INCLUDE_CMD_ATTRIB
|
|
/*#define INCLUDE_CMD_BREAK*/
|
|
#define INCLUDE_CMD_CHCP
|
|
#define INCLUDE_CMD_CHDIR
|
|
#define INCLUDE_CMD_CLS
|
|
#define INCLUDE_CMD_COLOR
|
|
#define INCLUDE_CMD_COPY
|
|
/*#define INCLUDE_CMD_CTTY*/
|
|
#define INCLUDE_CMD_DATE
|
|
#define INCLUDE_CMD_DEL
|
|
#define INCLUDE_CMD_DIR
|
|
#define INCLUDE_CMD_LABEL
|
|
#define INCLUDE_CMD_MKDIR
|
|
#define INCLUDE_CMD_MOVE
|
|
#define INCLUDE_CMD_PATH
|
|
#define INCLUDE_CMD_PROMPT
|
|
#define INCLUDE_CMD_RMDIR
|
|
#define INCLUDE_CMD_RENAME
|
|
#define INCLUDE_CMD_SET
|
|
#define INCLUDE_CMD_TIME
|
|
#define INCLUDE_CMD_TITLE
|
|
#define INCLUDE_CMD_TYPE
|
|
#define INCLUDE_CMD_VER
|
|
#define INCLUDE_CMD_REM
|
|
#define INCLUDE_CMD_PAUSE
|
|
#define INCLUDE_CMD_BEEP
|
|
#define INCLUDE_CMD_VERIFY
|
|
#define INCLUDE_CMD_VOL
|
|
|
|
/*
|
|
command that do not have a define:
|
|
|
|
exit
|
|
call
|
|
echo
|
|
goto
|
|
for
|
|
if
|
|
shift
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endif /* _CONFIG_H_INCLUDED_ */
|