1 /* should be included from config.h */
2 
3 #if defined(WIN32) || defined(__WIN32__)
4 #undef WIN32
5 #define WIN32 1
6 #define WIN32_LEAN_AND_MEAN
7 
8 #elif defined(MSDOS) || defined(__MSDOS__) || defined(__PACIFIC__)
9 #undef MSDOS
10 #define MSDOS 1
11 
12 #else
13 #undef UNIX
14 #define UNIX 1
15 #endif
16 
17 #if UNIX
18 #define CONFIG_FILENAME ".vitetris"
19 #else
20 #define CONFIG_FILENAME "vitetris.cfg"
21 #endif
22 
23 /* Only used if UNIX */
24 #ifndef HISCORE_FILENAME
25 #define HISCORE_FILENAME "/var/games/vitetris-hiscores"
26 #endif
27 
28 #if __DJGPP__ || __TURBOC__
29 #undef HAVE_CONIO_H
30 #undef HAVE_GETTEXTINFO
31 #define HAVE_CONIO_H 1
32 #define HAVE_GETTEXTINFO 1
33 #endif
34