From fbfd081260c315729f93b257e9fa953c7994654c Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Mon, 10 Mar 2003 15:17:37 +0000 Subject: [PATCH] Removal of settings.h, settings moved in here. Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@736 --- src/platform/visualc/config.h | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/platform/visualc/config.h b/src/platform/visualc/config.h index 83fa3b12..74efab36 100644 --- a/src/platform/visualc/config.h +++ b/src/platform/visualc/config.h @@ -2,5 +2,22 @@ #define VERSION "0.57" -#define GCC_ATTRIBUTE(x) /* attribute not supported */ +/* Define to 1 to enable internal debugger, requires libcurses */ +#define C_DEBUG 1 +/* Define to 1 to enable screenshots, requires libpng */ +#define C_SSHOTS 1 + +/* Enable some heavy debugging options */ +#define C_HEAVY_DEBUG 0 + +/* Enable some big compile-time increasing inlines */ +#define C_EXTRAINLINE 0 + +/* Enable the FPU module, still only for beta testing */ +#define C_FPU 0 + +/* Maximum memory address range in megabytes */ +#define C_MEM_MAX_SIZE 12 + +#define GCC_ATTRIBUTE(x) /* attribute not supported */