mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
idaapi.i: Added BADNODE constant
idaapi.i: Added empty CASSERT define idaapi.i: Added uval_array type
This commit is contained in:
parent
867940ae80
commit
9fe2d0048b
@ -45,6 +45,7 @@
|
|||||||
|
|
||||||
%constant ea_t BADADDR = 0xFFFFFFFF;
|
%constant ea_t BADADDR = 0xFFFFFFFF;
|
||||||
%constant sel_t BADSEL = 0xFFFFFFFF;
|
%constant sel_t BADSEL = 0xFFFFFFFF;
|
||||||
|
%constant nodeidx_t BADNODE = 0xFFFFFFFF;
|
||||||
|
|
||||||
// Help SWIG to figure out the ulonglong type
|
// Help SWIG to figure out the ulonglong type
|
||||||
#ifdef SWIGWIN
|
#ifdef SWIGWIN
|
||||||
@ -65,6 +66,9 @@ typedef long long longlong;
|
|||||||
|
|
||||||
%include "pro.h"
|
%include "pro.h"
|
||||||
|
|
||||||
|
// Do not move this. We need to override the define from pro.h
|
||||||
|
#define CASSERT(type)
|
||||||
|
|
||||||
// Convert all of these
|
// Convert all of these
|
||||||
%cstring_output_maxstr_none(char *buf, size_t bufsize);
|
%cstring_output_maxstr_none(char *buf, size_t bufsize);
|
||||||
|
|
||||||
@ -72,6 +76,7 @@ typedef long long longlong;
|
|||||||
%array_class(tid_t, tid_array);
|
%array_class(tid_t, tid_array);
|
||||||
%array_class(ea_t, ea_array);
|
%array_class(ea_t, ea_array);
|
||||||
%array_class(sel_t, sel_array);
|
%array_class(sel_t, sel_array);
|
||||||
|
%array_class(uval_t, uval_array);
|
||||||
%pointer_class(int, int_pointer);
|
%pointer_class(int, int_pointer);
|
||||||
%pointer_class(ea_t, ea_pointer);
|
%pointer_class(ea_t, ea_pointer);
|
||||||
%pointer_class(sval_t, sval_pointer);
|
%pointer_class(sval_t, sval_pointer);
|
||||||
@ -84,7 +89,7 @@ typedef long long longlong;
|
|||||||
%include "nalt.i"
|
%include "nalt.i"
|
||||||
|
|
||||||
%include "allins.i"
|
%include "allins.i"
|
||||||
%include "area.hpp"
|
%include "area.i"
|
||||||
%include "auto.i"
|
%include "auto.i"
|
||||||
%include "bytes.i"
|
%include "bytes.i"
|
||||||
%include "dbg.i"
|
%include "dbg.i"
|
||||||
|
Loading…
Reference in New Issue
Block a user