14 lines
177 B
OpenEdge ABL
14 lines
177 B
OpenEdge ABL
|
|
%module not_c_keywords
|
||
|
|
|
||
|
|
%extend ComplexStruct {
|
||
|
|
void init() {
|
||
|
|
$self->complex = 123;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
%inline %{
|
||
|
|
struct ComplexStruct {
|
||
|
|
int complex; /* complex as variable name */
|
||
|
|
};
|
||
|
|
%}
|