git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11742 626c5289-ae23-0410-ae9c-e8d60b6d4f22
16 lines
249 B
OpenEdge ABL
16 lines
249 B
OpenEdge ABL
%module extern_c
|
|
|
|
%inline %{
|
|
extern "C" {
|
|
void RealFunction(int value);
|
|
typedef void Function1(int value); // Fails
|
|
typedef int Integer1;
|
|
}
|
|
typedef void Function2(int value); // Works
|
|
typedef int Integer2;
|
|
%}
|
|
|
|
%{
|
|
void RealFunction(int value) {}
|
|
%}
|
|
|