1 /*
2   Config
3   General configuration of supported options
4   JBS 7 July 1994
5 */
6 
7 #ifndef _CONFIG_
8 
9 #define _CONFIG_
10 
11 /* General configuration */
12 
13 #define EARLY           1       /* Support version 1 and 2 games */
14 
15 /* Profile cache */
16 
17 /* #define PROFILE         1 */
18 
19 /* Version numbering */
20 
21 #define VERSION_NUMBER  "1.8m"
22 #define SHORT_VERSION   "Version " VERSION_NUMBER
23 
24 #define VERSION_DATE    "September 1996"
25 
26 #define VERSION         SHORT_VERSION " (C) J.B. Scattergood, " VERSION_DATE
27 
28 #define APPNAME         "Infocom"
29 
30 /* Windows 3.0 implies 16 bit windows */
31 
32 
33 /* Configure based on the system type */
34 
35 
36 #endif
37 
38