summaryrefslogtreecommitdiffstats
path: root/src/VBox/GuestHost/OpenGL/include/cr_compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/GuestHost/OpenGL/include/cr_compiler.h')
-rw-r--r--src/VBox/GuestHost/OpenGL/include/cr_compiler.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/VBox/GuestHost/OpenGL/include/cr_compiler.h b/src/VBox/GuestHost/OpenGL/include/cr_compiler.h
new file mode 100644
index 00000000..15f73bd0
--- /dev/null
+++ b/src/VBox/GuestHost/OpenGL/include/cr_compiler.h
@@ -0,0 +1,45 @@
+/**
+ * Compiler-related definitions, etc.
+ */
+
+#ifndef CR_COMPILER_H
+#define CR_COMPILER_H 1
+
+
+/**
+ * Function inlining
+ */
+#if defined(__GNUC__)
+# define INLINE __inline__
+#elif defined(__MSC__)
+# define INLINE __inline
+#elif defined(_MSC_VER)
+# define INLINE __inline
+#elif defined(__ICL)
+# define INLINE __inline
+#else
+# define INLINE
+#endif
+
+
+/**
+ * For global vars in shared libs
+ */
+#include <iprt/cdefs.h>
+
+#ifndef DLLDATA
+#define DLLDATA(type) DECLIMPORT(type)
+#endif
+
+/**
+ * For functions called via the public API.
+ * XXX CR_APIENTRY could probably replace all the other *_APIENTRY defines.
+ */
+#ifdef WINDOWS
+#define CR_APIENTRY __stdcall
+#else
+#define CR_APIENTRY
+#endif
+
+
+#endif /* CR_COMPILER_H */