Workaround for enum vs type swig hack

This commit is contained in:
pancake 2016-06-22 19:43:19 +02:00
parent feff5b59e4
commit e4eb7e5ee9
2 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ typedef struct r_debug_frame_t {
typedef struct r_debug_reason_t {
RDebugReasonType type;
int /*RDebugReasonType*/ type;
int tid;
int signum;
ut64 bp_addr;

View File

@ -79,7 +79,7 @@ typedef enum {
typedef struct r_reg_item_t {
char *name;
RRegisterType type;
int /*RRegisterType*/ type;
int size; /* 8,16,32,64 ... 128/256 ??? */
int offset; /* offset in data structure */
int packed_size; /* 0 means no packed register, 1byte pack, 2b pack... */