903f1165012131a01990fab5fd5eec37c19a1478
[rocksndiamonds.git] / src / platform.h
1 /***********************************************************
2 *  Rocks'n'Diamonds -- McDuffin Strikes Back!              *
3 *----------------------------------------------------------*
4 *  (c) 1995-98 Artsoft Entertainment                       *
5 *              Holger Schemel                              *
6 *              Oststrasse 11a                              *
7 *              33604 Bielefeld                             *
8 *              phone: ++49 +521 290471                     *
9 *              email: aeglos@valinor.owl.de                *
10 *----------------------------------------------------------*
11 *  platform.h                                              *
12 ***********************************************************/
13
14 #ifndef PLATFORM_H
15 #define PLATFORM_H
16
17 #if defined(MSDOS)
18 #define PLATFORM_MSDOS
19 #elif defined(WIN32)
20 #define PLATFORM_WIN32
21 #else
22 #define PLATFORM_UNIX
23 #endif
24
25 #endif /* PLATFORM_H */