upm/src/buzzer/javaupm_buzzer.i

21 lines
401 B
OpenEdge ABL
Raw Normal View History

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