Merge pull request #2532 from lambdageek/monoerror-mono_object_new
[mono.git] / mono / utils / mono-publib.h
index a418cadeca17dba4b1dd5de93e06c03fbcf3da77..30c807043998a61ef995c29c63f3ffe1ac79524d 100644 (file)
@@ -44,7 +44,11 @@ typedef unsigned __int64     uint64_t;
 
 #include <stdint.h>
 
+#ifdef __GNUC__
+#define MONO_API_EXPORT __attribute__ ((visibility ("default")))
+#else
 #define MONO_API_EXPORT
+#endif
 #define MONO_API_IMPORT
 
 #endif /* end of compiler-specific stuff */
@@ -69,6 +73,22 @@ MONO_API void mono_free (void *);
 
 #define MONO_CONST_RETURN const
 
+
+#if defined (MONO_INSIDE_RUNTIME)
+
+#if defined (__clang__)
+#define MONO_RT_EXTERNAL_ONLY __attribute__ ((unavailable("The mono runtime must not call this function")))
+#elif defined (__GNUC__)
+#define MONO_RT_EXTERNAL_ONLY __attribute__ ((error("The mono runtime must not call this function")))
+#else
+#define MONO_RT_EXTERNAL_ONLY
+#endif /* __clang__ */
+
+#else
+#define MONO_RT_EXTERNAL_ONLY
+#endif /* MONO_INSIDE_RUNTIME */
+
+
 MONO_END_DECLS
 
 #endif /* __MONO_PUBLIB_H__ */