⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test.h

📁 I always wanted to play around with JNI. This is my first attempt so I created a utility DLL called
💻 H
字号:
/* DO NOT EDIT THIS FILE - it is machine generated */#include <jni.h>
/* Header for class Test */#ifndef _Included_Test#define _Included_Test
#ifdef __cplusplusextern "C" {#endif
/*
 * Class:     Test
 * Method:    print
 * Signature: (Ljava/lang/String;)V
 */
JNIEXPORT void JNICALL Java_Test_print
  (JNIEnv *, jobject, jstring);
/*
 * Class:     Test
 * Method:    readFile
 * Signature: (Ljava/lang/String;)[B
 */
JNIEXPORT jbyteArray JNICALL Java_Test_readFile
  (JNIEnv *, jobject, jstring);
/*
 * Class:     Test
 * Method:    searchFile
 * Signature: (Ljava/lang/String;[BI)I
 */
JNIEXPORT jint JNICALL Java_Test_searchFile
  (JNIEnv *, jobject, jstring, jbyteArray, jint);
/*
 * Class:     Test
 * Method:    findFiles
 * Signature: (Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String;
 */
JNIEXPORT jobjectArray JNICALL Java_Test_findFiles
  (JNIEnv *, jobject, jstring, jstring);
/*
 * Class:     Test
 * Method:    checkProcess
 * Signature: (Ljava/lang/String;ZZ)[Ljava/lang/String;
 */
JNIEXPORT jobjectArray JNICALL Java_Test_checkProcess
  (JNIEnv *, jobject, jstring, jboolean, jboolean);
/*
 * Class:     Test
 * Method:    startProcess
 * Signature: (Ljava/lang/String;Ljava/lang/String;)I
 */
JNIEXPORT jint JNICALL Java_Test_startProcess
  (JNIEnv *, jobject, jstring, jstring);
/*
 * Class:     Test
 * Method:    waitForFileMask
 * Signature: (Ljava/lang/String;Ljava/lang/String;)Z
 */
JNIEXPORT jboolean JNICALL Java_Test_waitForFileMask
  (JNIEnv *, jobject, jstring, jstring);
/*
 * Class:     Test
 * Method:    waitForAnyFile
 * Signature: (Ljava/lang/String;)Z
 */
JNIEXPORT jboolean JNICALL Java_Test_waitForAnyFile
  (JNIEnv *, jobject, jstring);
#ifdef __cplusplus}#endif
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -