upm/src/buzzer/javaupm_buzzer.i
Jon Trulson 7b9fbd8738 buzzer: C implementation; C++ wraps C
Signed-off-by: Jon Trulson <jtrulson@ics.com>
2016-10-28 16:48:53 -06:00

21 lines
401 B
OpenEdge ABL

%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);
}
}
%}