Fixes golang/go#29559 Change-Id: Iffaac239e5c9a9e53f4e292b4d9bf669d5084e1f GitHub-Last-Rev: c5d4a4823d2bf60fa7bff09ab7bbdc9235c49d67 GitHub-Pull-Request: golang/mobile#25 Reviewed-on: https://go-review.googlesource.com/c/159417 Reviewed-by: Elias Naur <mail@eliasnaur.com>
24 lines
546 B
Plaintext
24 lines
546 B
Plaintext
// JNI functions for the Go <=> Java bridge.
|
|
// gobind -lang=java issue29559
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
|
|
#include <android/log.h>
|
|
#include <stdint.h>
|
|
#include "seq.h"
|
|
#include "_cgo_export.h"
|
|
#include "issue29559.h"
|
|
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_issue29559_Issue29559__1init(JNIEnv *env, jclass _unused) {
|
|
jclass clazz;
|
|
}
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_issue29559_Issue29559_takesAString(JNIEnv* env, jclass _clazz, jstring s) {
|
|
nstring _s = go_seq_from_java_string(env, s);
|
|
proxyissue29559__TakesAString(_s);
|
|
}
|
|
|