Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mono/dis/util.h')
-rw-r--r--mono/dis/util.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/mono/dis/util.h b/mono/dis/util.h
index 4c33534049e..cbb9a4f365d 100644
--- a/mono/dis/util.h
+++ b/mono/dis/util.h
@@ -1,11 +1,10 @@
-
typedef struct {
int code;
const char *str;
-} map_t;
+} dis_map_t;
-const char *map (guint32 code, map_t *table);
-const char *flags (guint32 code, map_t *table);
+const char *map (guint32 code, dis_map_t *table);
+const char *flags (guint32 code, dis_map_t *table);
void hex_dump (const char *buffer, int base, int count);
+char* data_dump (const char *data, int len, const char* prefix);
-#define CSIZE(x) (sizeof (x) / 4)