swig/Examples/java/enum/example.i
William S Fulton 9c8a3d61de Removed deprecated pragmas
Use %javaconst(1) for enums and constants


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4659 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2003-04-03 12:11:55 +00:00

14 lines
250 B
OpenEdge ABL

/* File : example.i */
%module example
%{
#include "example.h"
%}
/* Force the generated Java code to use the C enum values rather than making a JNI call */
%javaconst(1);
/* Let's just grab the original header file here */
%include "example.h"