mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 01:59:18 +01:00
78c79f85b9
What's new: - Proper multi-threaded support - Better PyObject reference counting with ref_t and newref_t helper classes - Improved the pywraps/deployment script - Added IDAViewWrapper class and example - Added idc.GetDisasmEx() - Added idc.AddSegEx() - Added idc.GetLocalTinfo() - Added idc.ApplyType() - Updated type information implementation - Introduced the idaapi.require() - see http://www.hexblog.com/?p=749 - set REMOVE_CWD_SYS_PATH=1 by default in python.cfg (remove current directory from the import search path). Various bugfixes: - fixed various memory leaks - asklong/askaddr/asksel (and corresponding idc.py functions) were returning results truncated to 32 bits in IDA64 - fix wrong documentation for idc.SizeOf - GetFloat/GetDouble functions did not take into account endianness of the processor - idaapi.NO_PROCESS was not defined, and was causing GetProcessPid() to fail - idc.py: insert escape characters to string parameter when call Eval() - idc.SaveFile/savefile were always overwriting an existing file instead of writing only the new data - PluginForm.Close() wasn't passing its arguments to the delegate function, resulting in an error.
41 lines
1007 B
OpenEdge ABL
41 lines
1007 B
OpenEdge ABL
%ignore ANODE;
|
|
%ignore ANODE2;
|
|
%ignore AREA_LONG_COMMENT_TAG;
|
|
%ignore area_visitor_t;
|
|
%ignore areacb_t_link_dont_load;
|
|
%ignore add_area_from_cache;
|
|
%ignore areacb_t_valid_push_back;
|
|
|
|
// Ignore the private members in areacb_t
|
|
%ignore areacb_t::areasCode;
|
|
%ignore areacb_t::infosize;
|
|
%ignore areacb_t::lastreq;
|
|
%ignore areacb_t::reserved;
|
|
%ignore areacb_t::areas;
|
|
%ignore areacb_t::move_area_comment;
|
|
%ignore areacb_t::pack_and_write_area;
|
|
%ignore areacb_t::move_away;
|
|
|
|
%ignore areacb_t::read_cb;
|
|
%ignore areacb_t::write_cb;
|
|
%ignore areacb_t::delcache_cb;
|
|
%ignore areacb_t::edit_cb;
|
|
%ignore areacb_t::kill_cb;
|
|
%ignore areacb_t::new_cb;
|
|
|
|
%ignore areacb_t::choose_area;
|
|
%ignore areacb_t::choose_area2;
|
|
%ignore areacb_t::find_prev_gap;
|
|
%ignore areacb_t::find_next_gap;
|
|
|
|
%ignore areacb_t::move_areas;
|
|
%ignore areacb_t::for_all_areas;
|
|
|
|
%ignore areaset_t::count;
|
|
%ignore areaset_t::lower_bound;
|
|
%ignore areaset_t::upper_bound;
|
|
%ignore areaset_t::move_chunk;
|
|
%ignore areaset_t::check_move_args;
|
|
|
|
%include "area.hpp"
|