cemu-idapython/swig/struct.i

17 lines
401 B
OpenEdge ABL
Raw Normal View History

// Kernel-only symbols
2008-10-01 17:03:57 +02:00
%ignore init_structs;
%ignore save_structs;
%ignore term_structs;
%ignore get_struc_name(tid_t);
%ignore get_member_name2(tid_t);
2008-10-01 17:03:57 +02:00
%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]); }
}