2010-02-13 Jb Evain <jbevain@novell.com>
[mono-project.git] / mono / utils / mono-publib.h
blobb54249241199e58a1e6f2be4b3239a6de4171945
1 #ifndef __MONO_PUBLIB_H__
2 #define __MONO_PUBLIB_H__
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 */
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
18 MONO_BEGIN_DECLS
20 #if defined(_MSC_VER)
22 typedef __int8 int8_t;
23 typedef unsigned __int8 uint8_t;
24 typedef __int16 int16_t;
25 typedef unsigned __int16 uint16_t;
26 typedef __int32 int32_t;
27 typedef unsigned __int32 uint32_t;
28 typedef __int64 int64_t;
29 typedef unsigned __int64 uint64_t;
31 #else
33 #include <stdint.h>
35 #endif /* end of compiler-specific stuff */
37 typedef int32_t mono_bool;
38 typedef uint8_t mono_byte;
39 typedef uint16_t mono_unichar2;
41 typedef void (*MonoFunc) (void* data, void* user_data);
42 typedef void (*MonoHFunc) (void* key, void* value, void* user_data);
44 void mono_free (void *);
46 #define MONO_CONST_RETURN const
48 MONO_END_DECLS
50 #endif /* __MONO_PUBLIB_H__ */