自学内容网 自学内容网

mfc操作json示例

首先下载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);  


原文地址:https://blog.csdn.net/bcbobo21cn/article/details/145232983

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!