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

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

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

  • 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
}

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

你可能感兴趣的:(C)