diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 03:01:46 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 03:01:46 +0000 |
commit | f8fe689a81f906d1b91bb3220acde2a4ecb14c5b (patch) | |
tree | 26484e9d7e2c67806c2d1760196ff01aaa858e8c /src/VBox/GuestHost/OpenGL/include/cr_compiler.h | |
parent | Initial commit. (diff) | |
download | virtualbox-upstream.tar.xz virtualbox-upstream.zip |
Adding upstream version 6.0.4-dfsg.upstream/6.0.4-dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/VBox/GuestHost/OpenGL/include/cr_compiler.h')
-rw-r--r-- | src/VBox/GuestHost/OpenGL/include/cr_compiler.h | 45 |
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 */ |