cemu-idapython/swig/struct.i
gergely.erdelyi 56476d656a %feature("compactdefaultargs") is now global
Added support for void * + len input/output buffers (many netnodes function use it)
2009-03-29 16:55:31 +00:00

15 lines
335 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]); }
}