Added Mono.Tasklets test
[mono.git] / mono / utils / mono-publib.h
1 #ifndef __MONO_PUBLIB_H__
2 #define __MONO_PUBLIB_H__
3
4 /* 
5  * Minimal general purpose header for use in public mono header files.
6  * We can't include config.h, so we use compiler-specific preprocessor
7  * directives where needed.
8  */
9
10 #ifdef  __cplusplus
11 #define MONO_BEGIN_DECLS  extern "C" {
12 #define MONO_END_DECLS    }
13 #else
14 #define MONO_BEGIN_DECLS
15 #define MONO_END_DECLS
16 #endif
17
18 MONO_BEGIN_DECLS
19
20 /* VS 2010 and later have stdint.h */
21 #if defined(_MSC_VER)
22
23 #if _MSC_VER < 1600
24
25 typedef __int8                  int8_t;
26 typedef unsigned __int8         uint8_t;
27 typedef __int16                 int16_t;
28 typedef unsigned __int16        uint16_t;
29 typedef __int32                 int32_t;
30 typedef unsigned __int32        uint32_t;
31 typedef __int64                 int64_t;
32 typedef unsigned __int64        uint64_t;
33
34 #else
35
36 #include <stdint.h>
37
38 #endif
39
40 #define MONO_API_EXPORT __declspec(dllexport)
41 #define MONO_API_IMPORT __declspec(dllimport)
42
43 #else
44
45 #include <stdint.h>
46
47 #ifdef __GNUC__
48 #define MONO_API_EXPORT __attribute__ ((visibility ("default")))
49 #else
50 #define MONO_API_EXPORT
51 #endif
52 #define MONO_API_IMPORT
53
54 #endif /* end of compiler-specific stuff */
55
56 #if defined(MONO_DLL_EXPORT)
57         #define MONO_API MONO_API_EXPORT
58 #elif defined(MONO_DLL_IMPORT)
59         #define MONO_API MONO_API_IMPORT
60 #else
61         #define MONO_API
62 #endif
63
64 typedef int32_t         mono_bool;
65 typedef uint8_t         mono_byte;
66 typedef uint16_t        mono_unichar2;
67 typedef uint32_t        mono_unichar4;
68
69 typedef void    (*MonoFunc)     (void* data, void* user_data);
70 typedef void    (*MonoHFunc)    (void* key, void* value, void* user_data);
71
72 MONO_API void mono_free (void *);
73
74 #define MONO_CONST_RETURN const
75
76 /*
77  * When embedding, you have to define MONO_ZERO_LEN_ARRAY before including any
78  * other Mono header file if you use a different compiler from the one used to
79  * build Mono.
80  */
81 #ifndef MONO_ZERO_LEN_ARRAY
82 #ifdef __GNUC__
83 #define MONO_ZERO_LEN_ARRAY 0
84 #else
85 #define MONO_ZERO_LEN_ARRAY 1
86 #endif
87 #endif
88
89 #if defined (MONO_INSIDE_RUNTIME)
90
91 #if defined (__clang__)
92 #define MONO_RT_EXTERNAL_ONLY __attribute__ ((unavailable("The mono runtime must not call this function")))
93 #elif defined (__GNUC__)
94 #define MONO_RT_EXTERNAL_ONLY __attribute__ ((error("The mono runtime must not call this function")))
95 #else
96 #define MONO_RT_EXTERNAL_ONLY
97 #endif /* __clang__ */
98
99 #else
100 #define MONO_RT_EXTERNAL_ONLY
101 #endif /* MONO_INSIDE_RUNTIME */
102
103
104 MONO_END_DECLS
105
106 #endif /* __MONO_PUBLIB_H__ */
107