* RegistryKeyTest.cs: Modified GetValueNamesTest and GetSubKeyNamesTest
[mono.git] / mono / metadata / debug-helpers.h
index 4157439bf9888dc7441058db296113367c0fca8d..ee6924fb6823f300f9b1995431e0bb178a75929b 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);
@@ -18,12 +20,14 @@ struct MonoDisHelper {
        gpointer user_data;
 };
 
-char* mono_disasm_code_one (MonoDisHelper *dh, MonoMethod *method, const guchar *ip);
+char* mono_disasm_code_one (MonoDisHelper *dh, MonoMethod *method, const guchar *ip, const guchar** endp);
 char* mono_disasm_code     (MonoDisHelper *dh, MonoMethod *method, const guchar *ip, const guchar* end);
 
 typedef struct MonoMethodDesc MonoMethodDesc;
 
 void            mono_type_get_desc (GString *res, MonoType *type, gboolean include_namespace);
+char*           mono_type_full_name (MonoType *type);
+
 char*           mono_signature_get_desc (MonoMethodSignature *sig, gboolean include_namespace);
 
 MonoMethodDesc* mono_method_desc_new (const char *name, gboolean include_namespace);
@@ -36,5 +40,7 @@ MonoMethod*     mono_method_desc_search_in_image (MonoMethodDesc *desc, MonoImag
 
 char*           mono_method_full_name (MonoMethod *method, gboolean signature);
 
+G_END_DECLS
+
 #endif /* __MONO_DEBUG_HELPERS_H__ */