13 lines
169 B
OpenEdge ABL
13 lines
169 B
OpenEdge ABL
%module enum_plus
|
|
|
|
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) iFoo; /* Ruby, wrong constant name */
|
|
|
|
%inline %{
|
|
struct iFoo
|
|
{
|
|
enum {
|
|
Phoo = +50
|
|
};
|
|
};
|
|
%}
|