KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
hljni
★ 10
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
wiki.newae.com
:
This is a GIT syncronization of https://wiki.newae.com
PSDBC
:
No description available.
clove_bounty
:
Help us populate the many altcoins for our atomic swap protocol!
Commercium_Deprecated
:
DEPRECATED Commercium :: integration/staging tree
furnari-flow
:
Antonino Furnari's fork of Feichtenhofer's gpu_flow, with temporal dilation.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
hljni
?
Download (.md)
# hljni - call Java from Haxe/HashLink [](https://travis-ci.org/nadako/hljni) This [Haxe](https://github.com/HaxeFoundation/haxe) + [HashLink](https://github.com/HaxeFoundation/hashlink) library provides bindings for the [Java Native Interface](https://docs.oracle.com/javase/8/docs/technotes/guides/jni/), allowing for interoperation between Java VM and HashLink run-time. In other words: we can call Java functions from Haxe, which is useful when e.g. running on Android! ## Usage As with any HashLink bindings, this library consists of two parts: * native glue that exposes JNI API in a HashLink-friendly way * Haxe externs for the glue If you compile your Haxe/HL project to C, add the `native/hljni.c` file to your C compilation. To use JNI you need an instance of hljni.JNIEnv, which is just a `JNIEnv*` pointer that you must obtain somehow in your specific application code (TODO: example) > TODO: bytecode/hdll use case, code examples, add helpers, etc.