2009-09-10 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mono / metadata / debug-helpers.h
index 56fbaddf9f7ed6174b96b1a81b973dfaa44e0b7d..6e1d61da40438a058b997a30dc15c1b10268ff51 100644 (file)
@@ -4,6 +4,8 @@
 #include <glib.h>
 #include <mono/metadata/class.h>
 
+G_BEGIN_DECLS
+
 typedef struct MonoDisHelper MonoDisHelper;
 
 typedef char* (*MonoDisIndenter) (MonoDisHelper *dh, MonoMethod *method, guint32 ip_offset);
@@ -28,8 +30,10 @@ char*           mono_type_full_name (MonoType *type);
 
 char*           mono_signature_get_desc (MonoMethodSignature *sig, gboolean include_namespace);
 
+char*           mono_context_get_desc (MonoGenericContext *context);
+
 MonoMethodDesc* mono_method_desc_new (const char *name, gboolean include_namespace);
-MonoMethodDesc*mono_method_desc_from_method (MonoMethod *method);
+MonoMethodDesc* mono_method_desc_from_method (MonoMethod *method);
 void            mono_method_desc_free (MonoMethodDesc *desc);
 gboolean        mono_method_desc_match (MonoMethodDesc *desc, MonoMethod *method);
 gboolean        mono_method_desc_full_match (MonoMethodDesc *desc, MonoMethod *method);
@@ -38,5 +42,9 @@ MonoMethod*     mono_method_desc_search_in_image (MonoMethodDesc *desc, MonoImag
 
 char*           mono_method_full_name (MonoMethod *method, gboolean signature);
 
+char*           mono_field_full_name (MonoClassField *field);
+
+G_END_DECLS
+
 #endif /* __MONO_DEBUG_HELPERS_H__ */