distinguished jni build with build macro

This commit is contained in:
2017-05-18 19:26:18 +08:00
parent a39423e0f6
commit 90cecb0e1c
2 changed files with 5 additions and 3 deletions

View File

@@ -8,12 +8,10 @@ Description: This file links to java layer for Android application
Revision log:
* 2016-03-21: created by strawmanbobi
**************************************************************************************************/
// #include <jni.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include "./include/jni.h"
#include "ir_decode_jni.h"
#include "../include/ir_defs.h"
#include "../include/ir_decode.h"
@@ -82,7 +80,7 @@ JNIEXPORT jintArray JNICALL Java_net_irext_decodesdk_IRDecode_irDecode
jfieldID ac_wind_speed_fid = (*env)->GetFieldID(env, n_ac_status, "acWindSpeed", "I");
jint i_ac_wind_speed = (*env)->GetIntField(env, jni_ac_status, ac_wind_speed_fid);
ac_status.acDisplay = 0;
ac_status.acSleep = 0;
ac_status.acTimer = 0;

View File

@@ -1,5 +1,9 @@
/* DO NOT EDIT THIS FILE - it is machine generated */
#if defined BOARD_ANDROID
#include <jni.h>
#elif (defined BOARD_PC) && (defined BOARD_PC_JNI)
#include "./include/jni.h"
#endif
/* Header for class net_irext_decodesdk_IRDecode */
#ifndef _Included_net_irext_decodesdk_IRDecode