X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmetadata%2Fexception.h;h=fa17fa29e241a8ba920b2ea10c198c0ec2ae50e8;hb=f605c6478e5e6dd8bca797f8bf3be82c4175eaba;hp=7f191d1989b9c3371a2dc9a64923b0631d182c34;hpb=4eb352bcb3ef7a71dc9ab62c5cd2d5e7598619f7;p=mono.git diff --git a/mono/metadata/exception.h b/mono/metadata/exception.h index 7f191d1989b..fa17fa29e24 100644 --- a/mono/metadata/exception.h +++ b/mono/metadata/exception.h @@ -7,7 +7,7 @@ #include #include -G_BEGIN_DECLS +MONO_BEGIN_DECLS extern MonoException * mono_exception_from_name (MonoImage *image, @@ -15,7 +15,7 @@ mono_exception_from_name (MonoImage *image, const char *name); MonoException * -mono_exception_from_token (MonoImage *image, guint32 token); +mono_exception_from_token (MonoImage *image, uint32_t token); MonoException * mono_exception_from_name_two_strings (MonoImage *image, const char *name_space, @@ -25,6 +25,10 @@ MonoException * mono_exception_from_name_msg (MonoImage *image, const char *name_space, const char *name, const char *msg); +MonoException * +mono_exception_from_token_two_strings (MonoImage *image, uint32_t token, + MonoString *a1, MonoString *a2); + extern MonoException * mono_exception_from_name_domain (MonoDomain *domain, MonoImage *image, const char* name_space, @@ -106,7 +110,7 @@ MonoException * mono_get_exception_file_not_found2 (const char *msg, MonoString *fname); MonoException * -mono_get_exception_type_initialization (const gchar *type_name, MonoException *inner); +mono_get_exception_type_initialization (const char *type_name, MonoException *inner); MonoException * mono_get_exception_synchronization_lock (const char *msg); @@ -126,9 +130,21 @@ mono_get_exception_bad_image_format2 (const char *msg, MonoString *fname); MonoException * mono_get_exception_stack_overflow (void); +MonoException * +mono_get_exception_out_of_memory (void); + +MonoException * +mono_get_exception_field_access (void); + +MonoException * +mono_get_exception_method_access (void); + MonoException * mono_get_exception_reflection_type_load (MonoArray *types, MonoArray *exceptions); -G_END_DECLS +MonoException * +mono_get_exception_runtime_wrapped (MonoObject *wrapped_exception); + +MONO_END_DECLS #endif /* _MONO_METADATA_EXCEPTION_H_ */