added build env for VC++

This commit is contained in:
strawmanbobi
2016-12-14 21:37:56 +08:00
parent 6653c7ac8f
commit 684dedfa90
26 changed files with 349 additions and 96 deletions

View File

@@ -9,18 +9,19 @@ Revision log:
* 2016-10-01: created by strawmanbobi
**************************************************************************************************/
#if defined BOARD_ANDROID
#include <android/log.h>
#define LOG_TAG "irda_decode"
#endif
#ifndef PARSE_IR_DEFS_H
#define PARSE_IR_DEFS_H
#ifdef __cplusplus
extern "C"
{
#endif
#if defined BOARD_ANDROID
#include <android/log.h>
#define LOG_TAG "irda_decode"
#endif
#define TRUE 1
#define FALSE 0
@@ -28,7 +29,7 @@ typedef unsigned char UINT8;
typedef signed char INT8;
typedef unsigned short UINT16;
typedef signed short INT16;
typedef unsigned char BOOL;
typedef int BOOL;
#define irda_malloc(A) malloc(A)
#define irda_free(A) free(A)