blob: 15f73bd020024bde3cdcf8f6dec39cd9a0b26e35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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 */
|