mirror of
https://github.com/corda/corda.git
synced 2025-01-04 20:24:17 +00:00
14 lines
294 B
C++
14 lines
294 B
C++
|
#ifndef __JNI_HPP__
|
||
|
#define __JNI_HPP__
|
||
|
|
||
|
#include <jni.h>
|
||
|
|
||
|
#define NATIVE_WRAPPER(return_type, method) \
|
||
|
JNIEXPORT return_type JNICALL \
|
||
|
Java_net_corda_sgx_bridge_wrapper_NativeWrapper_##method
|
||
|
|
||
|
#define KLASS(name) \
|
||
|
("net/corda/sgx/bridge/wrapper/" name)
|
||
|
|
||
|
#endif /* __JNI_HPP__ */
|