我正在尝试在 Eclipse 中使用 NDK,但是在遵循教程时会弹出此错误,我不明白它来自哪里
这是我的 .h 文件
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class com_example_myproject_MainActivity */
#ifndef _Included_com_example_myproject_MainActivity
#define _Included_com_example_myproject_MainActivity
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: com_example_myproject_MainActivity
* Method: getMyData
* Signature: ()Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_com_example_myproject_MainActivity_getMyData
(JNIEnv *, jobject);
#ifdef __cplusplus
}
#endif
#endif
错误 = 无法解析类型“JNICALL”
我在代码视图中也有语法错误,但这些并没有出现在 JNIEXPORT 出现的错误之间