cemu-idapython/swig/struct.i
2008-10-01 15:03:57 +00:00

17 lines
378 B
OpenEdge ABL

// Kernel-only symbols
%ignore init_structs;
%ignore save_structs;
%ignore term_structs;
%ignore sync_from_struc;
%feature("compactdefaultargs") add_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]); }
}