changed "http" to "https" in URLs
[rocksndiamonds.git] / src / libgame / platform.h
index 8b13dc97080e29b993c461447e432a8440e55b6e..60ca20f4734cd98960bdd970cf0462dbe2066b33 100644 (file)
@@ -4,7 +4,7 @@
 // (c) 1995-2014 by Artsoft Entertainment
 //                         Holger Schemel
 //                 info@artsoft.org
-//                 http://www.artsoft.org/
+//                 https://www.artsoft.org/
 // ----------------------------------------------------------------------------
 // platform.h
 // ============================================================================
 #endif
 
 
+// ============================================================================
+// define additional platform keywords for CPU architecture
+// ============================================================================
+
+#if defined(__x86_64__) || defined(__LP64__) || defined(_LP64)
+#define PLATFORM_64_BIT
+#define PLATFORM_XX_BIT_STRING "64-bit"
+#else
+#define PLATFORM_32_BIT
+#define PLATFORM_XX_BIT_STRING "32-bit"
+#endif
+
+
 // ============================================================================
 // define additional target keywords
 // ============================================================================