mirror of
https://github.com/eclipse/upm.git
synced 2025-03-25 17:59:59 +03:00
21 lines
401 B
OpenEdge ABL
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);
|
|
}
|
|
}
|
|
%}
|