mirror of
https://github.com/eclipse/upm.git
synced 2025-07-05 11:21:12 +03:00
SWIG: Added java swig interface files
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
This commit is contained in:
23
src/si7005/javaupm_si7005.i
Normal file
23
src/si7005/javaupm_si7005.i
Normal file
@ -0,0 +1,23 @@
|
||||
%module javaupm_si7005
|
||||
%include "../upm.i"
|
||||
%include "arrays_java.i";
|
||||
%include "../java_buffer.i"
|
||||
%include "cpointer.i"
|
||||
%include "typemaps.i"
|
||||
|
||||
%{
|
||||
#include "si7005.h"
|
||||
%}
|
||||
|
||||
%include "si7005.h"
|
||||
|
||||
%pragma(java) jniclasscode=%{
|
||||
static {
|
||||
try {
|
||||
System.loadLibrary("javaupm_si7005");
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
System.err.println("Native code library failed to load. \n" + e);
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
%}
|
Reference in New Issue
Block a user