upm/src/servo/javaupm_servo.i

28 lines
477 B
OpenEdge ABL
Raw Normal View History

%module javaupm_servo
%include "../upm.i"
%include "servo.hpp"
%{
#include "servo.hpp"
%}
%include "es08a.hpp"
%{
#include "es08a.hpp"
%}
%include "es9257.hpp"
%{
#include "es9257.hpp"
%}
%pragma(java) jniclasscode=%{
static {
try {
System.loadLibrary("javaupm_servo");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. \n" + e);
System.exit(1);
}
}
%}