mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00: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;
|