24 lines
492 B
Plaintext
24 lines
492 B
Plaintext
|
// JNI functions for the Go <=> Java bridge.
|
||
|
// gobind -lang=java -javapkg=com.example customprefix
|
||
|
//
|
||
|
// File is generated by gobind. Do not edit.
|
||
|
|
||
|
#include <android/log.h>
|
||
|
#include <stdint.h>
|
||
|
#include "seq.h"
|
||
|
#include "customprefix.h"
|
||
|
#include "_cgo_export.h"
|
||
|
|
||
|
|
||
|
|
||
|
JNIEXPORT void JNICALL
|
||
|
Java_com_example_Customprefix_init(JNIEnv *env, jclass _unused) {
|
||
|
jclass clazz;
|
||
|
}
|
||
|
|
||
|
JNIEXPORT void JNICALL
|
||
|
Java_com_example_Customprefix_F(JNIEnv* env, jclass clazz) {
|
||
|
proxycustomprefix__F();
|
||
|
}
|
||
|
|