summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/hlg150h/javaupm_hlg150h.i
blob: ffe620b192d96c80e56d52589c3352b395de16e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%module javaupm_hlg150h
%include "../upm.i"
%include "arrays_java.i";
%include "../java_buffer.i"
%include "cpointer.i"
%include "typemaps.i"

%{
    #include "hlg150h.hpp"
%}

%include "hlg150h.hpp"

%pragma(java) jniclasscode=%{
    static {
        try {
            System.loadLibrary("javaupm_hlg150h");
        } catch (UnsatisfiedLinkError e) {
            System.err.println("Native code library failed to load. \n" + e);
            System.exit(1);
        }
    }
%}