首先下载cJSON,加入项目;
构建工程,如果出现,
fatal error C1010: unexpected end of file while looking for precompiled head
在cJSON.c文件的头部加入#include "stdafx.h"; 看情况,可能是加到.h或者是.cpp文件的头部,它如果有包含头文件,
#include <string.h>
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <float.h>
#include <limits.h>
#include <ctype.h>
应该是加到 这一串的前面;
再构建,它给的源码文件有如下几行编译不通过,
if (p) str=ensure(p,64);
else str=(char*)cJSON_malloc(64);