__declspec (dllexport)定义了导出函数,但dll中没有此函数

2024-01-10 13:01:32

这个一个比较低级的问题,为避免两次犯这样的低级错误,特此记录。

发生这个问题的原因是未包含头文件,例如:

  • test.h
//在头文件中声明了导出函数test()
#ifdef __cplusplus
extern "C" {
#endif	/*__cplusplus 1*/

	extern __declspec (dllexport) int __stdcall test();

#ifdef __cplusplus
};
#endif  /*__cplusplus 2*/
  • test.c
int test(){
    return 0
}

编译成功,此时用“dumpbin /EXPORTS”查看编译的dll,发现未包含导出函数test()。

发生此问题的原因是test.c未包含头文件test.h
修改test.c如下重新编译即可

#include "test.h"
int test(){
    return 0
}

越是简单的问题越容易犯错。

文章来源:https://blog.csdn.net/kmblack1/article/details/135496234
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。