Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / metadata / exception-internals.h
index 60c2ae0bd19a28725cc9464e1dd3673ec0742836..96996f138b459fa6c3ac788e93aeb235101f2943 100644 (file)
@@ -1,18 +1,39 @@
+/**
+ * \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);
 
-#endif
\ No newline at end of file
+MonoException *
+mono_exception_from_name_two_strings_checked (MonoImage *image, const char *name_space,
+                                             const char *name, MonoString *a1, MonoString *a2,
+                                             MonoError *error);
+
+MonoException *
+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