mirror of
https://github.com/tribufu/tribufu-java
synced 2026-05-06 14:57:27 +00:00
Update JNI Bindings
This commit is contained in:
parent
0d148a829f
commit
e24715c22a
5 changed files with 12 additions and 42 deletions
15
Native/Source/TribuFu.java
Normal file
15
Native/Source/TribuFu.java
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// Copyright (c) TribuFu. All Rights Reserved
|
||||
|
||||
package tribufu;
|
||||
|
||||
public class TribuFu {
|
||||
/**
|
||||
* A native method that is implemented by the 'TribuFu' native library.
|
||||
*/
|
||||
public native String Hello(String input);
|
||||
|
||||
// Used to load the 'TribuFu' library on application startup.
|
||||
static {
|
||||
System.loadLibrary("TribuFu_jvm");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue