• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// This file was generated by
2//     //third_party/jni_zero/jni_zero.py
3// For
4//     org.jni_zero.SampleModule
5
6#ifndef org_jni_1zero_SampleModule_JNI
7#define org_jni_1zero_SampleModule_JNI
8
9#include <jni.h>
10
11#include "third_party/jni_zero/jni_export.h"
12#include "third_party/jni_zero/jni_zero_helper.h"
13
14// Java to native functions
15// Forward declaration. To be implemented by the including .cc file.
16static jboolean JNI_SampleModule_Bar(JNIEnv* env, jboolean a);
17
18JNI_ZERO_BOUNDARY_EXPORT jboolean Java_J_module_1N_MejItBT4(
19    JNIEnv* env,
20    jclass jcaller,
21    jboolean a) {
22  auto _ret = JNI_SampleModule_Bar(env, a);
23  return _ret;
24}
25
26// Forward declaration. To be implemented by the including .cc file.
27static void JNI_SampleModule_Foo(JNIEnv* env);
28
29JNI_ZERO_BOUNDARY_EXPORT void Java_J_module_1N_MqDgXQiH(JNIEnv* env, jclass jcaller) {
30  JNI_SampleModule_Foo(env);
31}
32
33
34
35#endif  // org_jni_1zero_SampleModule_JNI
36