2016-04-01 17:29:48 -06:00
|
|
|
%module javaupm_e50hx
|
|
|
|
%include "../upm.i"
|
|
|
|
%include "typemaps.i"
|
2016-06-10 12:32:54 -06:00
|
|
|
%include "carrays_uint32_t.i"
|
|
|
|
|
|
|
|
// We need to use this method for enum wrapping since the enum typedefs used
|
|
|
|
// by the derived classes (like ANALOG_VALUES_T) are passed to methods
|
|
|
|
// in the base class which expect a uint32_t. This is fine, and
|
2017-01-30 18:14:48 -08:00
|
|
|
// works everywhere except Java. Its type safety is a little too
|
2016-06-10 12:32:54 -06:00
|
|
|
// stringent in these cases. %javaconst(1) is generally recommended
|
|
|
|
// as it avoids JNI calls to determine the enumerant values at
|
|
|
|
// runtime.
|
|
|
|
%include "enumtypeunsafe.swg"
|
|
|
|
%javaconst(1);
|
2016-04-01 17:29:48 -06:00
|
|
|
|
2016-04-25 14:27:51 -07:00
|
|
|
%include "bacnetmstp.hpp"
|
2016-06-10 12:32:54 -06:00
|
|
|
%include "bacnetutil.hpp"
|
2016-04-25 14:27:51 -07:00
|
|
|
%include "e50hx.hpp"
|
2016-04-01 17:29:48 -06:00
|
|
|
%{
|
2016-06-10 12:32:54 -06:00
|
|
|
#include "bacnetutil.hpp"
|
2016-04-25 14:27:51 -07:00
|
|
|
#include "e50hx.hpp"
|
2016-04-01 17:29:48 -06:00
|
|
|
%}
|
|
|
|
|
|
|
|
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
|
|
static {
|
|
|
|
try {
|
|
|
|
System.loadLibrary("javaupm_e50hx");
|
|
|
|
} catch (UnsatisfiedLinkError e) {
|
|
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
|
|
System.exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
%}
|