16 lines
134 B
OpenEdge ABL
16 lines
134 B
OpenEdge ABL
%module xxx
|
|
|
|
%extend foo {
|
|
int bar() {
|
|
}
|
|
};
|
|
|
|
struct foo {
|
|
int bar();
|
|
int spam();
|
|
};
|
|
|
|
%extend foo {
|
|
int spam();
|
|
};
|