Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / metadata / exception-internals.h
index 4a9ad505798ee867cfab121d1afcf84069b6d44a..96996f138b459fa6c3ac788e93aeb235101f2943 100644 (file)
@@ -1,16 +1,21 @@
+/**
+ * \file
+ */
+
 #ifndef _MONO_METADATA_EXCEPTION_INTERNALS_H_
 #define _MONO_METADATA_EXCEPTION_INTERNALS_H_
 
 #include <glib.h>
 
 #include <mono/metadata/object.h>
+#include <mono/metadata/handle.h>
 #include <mono/utils/mono-error.h>
 
 MonoException *
 mono_get_exception_type_initialization_checked (const gchar *type_name, MonoException *inner, MonoError *error);
 
-MonoException *
-mono_get_exception_reflection_type_load_checked (MonoArray *types, MonoArray *exceptions, MonoError *error);
+MonoExceptionHandle
+mono_get_exception_reflection_type_load_checked (MonoArrayHandle types, MonoArrayHandle exceptions, MonoError *error);
 
 MonoException *
 mono_get_exception_runtime_wrapped_checked (MonoObject *wrapped_exception, MonoError *error);
@@ -25,4 +30,10 @@ mono_exception_from_token_two_strings_checked (MonoImage *image, uint32_t token,
                                               MonoString *a1, MonoString *a2,
                                               MonoError *error);
 
+
+typedef int (*MonoGetSeqPointFunc) (MonoDomain *domain, MonoMethod *method, gint32 native_offset);
+
+void
+mono_install_get_seq_point (MonoGetSeqPointFunc func);
+
 #endif