mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
15 lines
394 B
OpenEdge ABL
15 lines
394 B
OpenEdge ABL
%apply int * OUTPUT { int *opnum };
|
|
|
|
// Do not generate overloaded versions for default arguments
|
|
%feature("compactdefaultargs") find_error;
|
|
%feature("compactdefaultargs") find_notype;
|
|
%feature("compactdefaultargs") find_void;
|
|
%feature("compactdefaultargs") find_imm;
|
|
|
|
// FIXME: search() should be checked and enabled
|
|
%ignore search;
|
|
%ignore user2bin;
|
|
|
|
%include "search.hpp"
|
|
%clear int *opnum;
|