git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
18 lines
278 B
OpenEdge ABL
18 lines
278 B
OpenEdge ABL
/*
|
|
This testcase tests for embedded defines and embedded %constants
|
|
*/
|
|
|
|
%module defines
|
|
%pragma make_default
|
|
|
|
%inline %{
|
|
|
|
typedef struct EmbeddedDefines {
|
|
int dummy;
|
|
#define EMBEDDED_DEFINE 44
|
|
#ifdef SWIG
|
|
%constant EMBEDDED_SWIG_CONSTANT = 55;
|
|
#endif
|
|
} EmbeddedDefines;
|
|
|
|
%}
|