Add copyright message to gles_video
[gpsp.git] / common.h
index 9d4f605..fb7f31e 100644 (file)
--- a/common.h
+++ b/common.h
 #define ror(dest, value, shift)                                               \
   dest = ((value) >> shift) | ((value) << (32 - shift))                       \
 
+#if defined(_WIN32) || defined(_WIN32_WCE)
+  #define PATH_SEPARATOR "\\"
+  #define PATH_SEPARATOR_CHAR '\\'
+#else
+  #define PATH_SEPARATOR "/"
+  #define PATH_SEPARATOR_CHAR '/'
+#endif
+
 // These includes must be used before SDL is included.
 #ifdef ARM_ARCH
 
@@ -262,4 +270,8 @@ typedef u32 fixed8_24;
   #include "pandora/pnd.h"
 #endif
 
+#ifdef RPI_BUILD
+  #include "raspberrypi/rpi.h"
+#endif
+
 #endif