diff options
| author | LandrelYoung <landerlyoung@gmail.com> | 2019-10-09 15:10:14 +0800 |
|---|---|---|
| committer | LandrelYoung <landerlyoung@gmail.com> | 2019-10-09 15:10:14 +0800 |
| commit | 41ff638de71bb5db27b6898f93fd62d94101bccd (patch) | |
| tree | 9298c5dfd470f14b69ec0462a4bbb30de809a535 /sample-java/src/main/cpp/ComputeInNative.cpp | |
| parent | 62f09fa64e7caaf2af16bdabeea3413d521782ca (diff) | |
rename samples
Diffstat (limited to 'sample-java/src/main/cpp/ComputeInNative.cpp')
| -rw-r--r-- | sample-java/src/main/cpp/ComputeInNative.cpp | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/sample-java/src/main/cpp/ComputeInNative.cpp b/sample-java/src/main/cpp/ComputeInNative.cpp new file mode 100644 index 0000000..a13cb8c --- /dev/null +++ b/sample-java/src/main/cpp/ComputeInNative.cpp @@ -0,0 +1,59 @@ +/** + * File generated by Jenny -- https://github.com/LanderlYoung/Jenny + * + * For bug report, please refer to github issue tracker https://github.com/LanderlYoung/Jenny/issues, + * or contact author landerlyoung@gmail.com. + */ +#include "ComputeInNative.h" + + + + +/* + * Class: io_github_landerlyoung_jennysample_ComputeInNative + * Method: public boolean init() + * Signature: ()Z + */ +jboolean ComputeInNative::init(JNIEnv *env, jobject thiz) { + return JNI_FALSE; +} + +/* + * Class: io_github_landerlyoung_jennysample_ComputeInNative + * Method: public void release() + * Signature: ()V + */ +void ComputeInNative::release(JNIEnv *env, jobject thiz) { + return; +} + +/* + * Class: io_github_landerlyoung_jennysample_ComputeInNative + * Method: public void setParam(java.util.Map<java.lang.String,java.lang.String> globalHttpParam) + * Signature: (Ljava/util/Map;)V + */ +void ComputeInNative::setParam(JNIEnv *env, jobject thiz, jobject globalHttpParam) { + return; +} + +/* + * Class: io_github_landerlyoung_jennysample_ComputeInNative + * Method: public java.util.Map<java.lang.String,java.lang.String> getGlobalParam() + * Signature: ()Ljava/util/Map; + */ +jobject ComputeInNative::getGlobalParam(JNIEnv *env, jobject thiz) { + return nullptr; +} + +/* + * Class: io_github_landerlyoung_jennysample_ComputeInNative + * Method: public boolean request(java.lang.String json, io.github.landerlyoung.jennysample.RequestListener listener) + * Signature: (Ljava/lang/String;Lio/github/landerlyoung/jennysample/RequestListener;)Z + */ +jboolean ComputeInNative::request(JNIEnv *env, jobject thiz, jstring json, jobject listener) { + return JNI_FALSE; +} + + + + |
