Files

16 lines
134 B
OpenEdge ABL
Raw Permalink Normal View History

%module xxx
%extend foo {
int bar() {
}
};
struct foo {
int bar();
int spam();
};
%extend foo {
int spam();
};