mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 01:59:18 +01:00
88aa875c55
- ph_get_operand_info() would crash IDA sometimes - idc.SetBptCond() was broken - idc.GetFunctionCmt() was memory leaking - Form.GetFieldValue() was failing for numeric controls - Exceptions originating from the director classes will be displayed And other minor mods...
15 lines
337 B
OpenEdge ABL
15 lines
337 B
OpenEdge ABL
// Kernel-only symbols
|
|
%ignore init_structs;
|
|
%ignore save_structs;
|
|
%ignore term_structs;
|
|
|
|
%ignore sync_from_struc;
|
|
|
|
%include "struct.hpp"
|
|
// Add a get_member() member function to struc_t.
|
|
// This helps to access the members array in the class.
|
|
%extend struc_t {
|
|
member_t *get_member(int index) { return &(self->members[index]); }
|
|
}
|
|
|