2008-10-25 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / dis / util.h
index 108c8eacb79f5b52e56ad5ef90cb75641927cb7c..cbb9a4f365dfb92462643146bc288a0e59bace71 100644 (file)
@@ -1,12 +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)