rnd-20001127-1-src
[rocksndiamonds.git] / src / platform.h
diff --git a/src/platform.h b/src/platform.h
new file mode 100644 (file)
index 0000000..903f116
--- /dev/null
@@ -0,0 +1,25 @@
+/***********************************************************
+*  Rocks'n'Diamonds -- McDuffin Strikes Back!              *
+*----------------------------------------------------------*
+*  (c) 1995-98 Artsoft Entertainment                       *
+*              Holger Schemel                              *
+*              Oststrasse 11a                              *
+*              33604 Bielefeld                             *
+*              phone: ++49 +521 290471                     *
+*              email: aeglos@valinor.owl.de                *
+*----------------------------------------------------------*
+*  platform.h                                              *
+***********************************************************/
+
+#ifndef PLATFORM_H
+#define PLATFORM_H
+
+#if defined(MSDOS)
+#define PLATFORM_MSDOS
+#elif defined(WIN32)
+#define PLATFORM_WIN32
+#else
+#define PLATFORM_UNIX
+#endif
+
+#endif /* PLATFORM_H */