对于需要c++调用的全局变量或函数,如果是在.c中实现的,就需要用下面宏定义:
#ifdef __cplusplus
extern "C" {
#endif
void testCFund();
int g_cVar;
#ifdef __cplusplus
}
#endif
否则混合链接的时候,会提示找不到函数或变量。
对于需要c++调用的全局变量或函数,如果是在.c中实现的,就需要用下面宏定义:
#ifdef __cplusplus
extern "C" {
#endif
void testCFund();
int g_cVar;
#ifdef __cplusplus
}
#endif
否则混合链接的时候,会提示找不到函数或变量。
QML中使用C++对象官方文档:http:
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M