mirror of
https://github.com/cemu-project/idapython.git
synced 2024-12-26 09:41:55 +01:00
idaapi.i: Added 64-bit BADADDR and BADSEL
This commit is contained in:
parent
b687523dd9
commit
bb99a7076e
@ -43,9 +43,15 @@
|
||||
#include "xref.hpp"
|
||||
%}
|
||||
|
||||
#ifdef __EA64__
|
||||
%constant ea_t BADADDR = 0xFFFFFFFFFFFFFFFF;
|
||||
%constant sel_t BADSEL = 0xFFFFFFFFFFFFFFFF;
|
||||
%constant nodeidx_t BADNODE = 0xFFFFFFFFFFFFFFFF;
|
||||
#else
|
||||
%constant ea_t BADADDR = 0xFFFFFFFF;
|
||||
%constant sel_t BADSEL = 0xFFFFFFFF;
|
||||
%constant nodeidx_t BADNODE = 0xFFFFFFFF;
|
||||
#endif
|
||||
|
||||
// Help SWIG to figure out the ulonglong type
|
||||
#ifdef SWIGWIN
|
||||
|
Loading…
Reference in New Issue
Block a user