summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/urm37/javaupm_urm37.i
blob: 725bafec88aeec3b894ee2ea9b08a1d7dac8885d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%module javaupm_urm37
%include "../upm.i"
%include "std_string.i"

%{
    #include "urm37.h"
%}

%include "urm37.h"


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