mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 18:16:55 +01:00
21 lines
450 B
OpenEdge ABL
21 lines
450 B
OpenEdge ABL
// Ignore kernel-only symbols
|
|
%ignore dual_text_options_t;
|
|
%ignore init;
|
|
%ignore retrieve;
|
|
%ignore read;
|
|
%ignore write;
|
|
|
|
%ignore setflag(uchar &where,uchar bit,int value);
|
|
%ignore setflag(ushort &where,ushort bit,int value);
|
|
%ignore setflag(uint32 &where,uint32 bit,int value);
|
|
|
|
// Make idainfo::get_proc_name() work
|
|
%cstring_bounded_output(char *buf, 8);
|
|
|
|
%ignore BADADDR;
|
|
%ignore BADSEL;
|
|
|
|
%include "ida.hpp"
|
|
|
|
%clear(char *buf);
|