Created
October 28, 2017 21:33
-
-
Save hohonuuli/1c47e1a355c264b052d2b9e168bc3c0c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* DO NOT EDIT THIS FILE - it is machine generated */ | |
#include <jni.h> | |
/* Header for class Sample1 */ | |
#ifndef _Included_Sample1 | |
#define _Included_Sample1 | |
#ifdef __cplusplus | |
extern "C" { | |
#endif | |
/* | |
* Class: Sample1 | |
* Method: intMethod | |
* Signature: (I)I | |
*/ | |
JNIEXPORT jint JNICALL Java_Sample1_intMethod | |
(JNIEnv *, jobject, jint); | |
/* | |
* Class: Sample1 | |
* Method: booleanMethod | |
* Signature: (Z)Z | |
*/ | |
JNIEXPORT jboolean JNICALL Java_Sample1_booleanMethod | |
(JNIEnv *, jobject, jboolean); | |
/* | |
* Class: Sample1 | |
* Method: stringMethod | |
* Signature: (Ljava/lang/String;)Ljava/lang/String; | |
*/ | |
JNIEXPORT jstring JNICALL Java_Sample1_stringMethod | |
(JNIEnv *, jobject, jstring); | |
/* | |
* Class: Sample1 | |
* Method: intArrayMethod | |
* Signature: ([I)I | |
*/ | |
JNIEXPORT jint JNICALL Java_Sample1_intArrayMethod | |
(JNIEnv *, jobject, jintArray); | |
#ifdef __cplusplus | |
} | |
#endif | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment