本文主要是介绍warning c4273: inconsistent dll linkage,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
编译时候,在release版本下发现以下警告,看到警告总是不舒服的,于是在网上搜索,解决方案
: warning C4273: 'DownloadGameFile' : inconsistent dll linkage. dllexport assumed.
: warning C4273: 'StopDownload' : inconsistent dll linkage. dllexport assumed.
在download.h头文件中可以看到以下定义
#ifdef DOWNLOAD_EXPORTS
#define DOWNLOAD_API __declspec(dllexport)
#else
#define DOWNLOAD_API __declspec(dllimport)
#endif
解决方案:
在工程设置中,C/C++->General->Preprocessor definitions中加上DOWNLOAD_EXPORTS
这样警告就消除了
这篇关于warning c4273: inconsistent dll linkage的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!