为什么我的DLL报错呢?
我用的是vc6.0testdll.h代码如下:
#ifdef __cplusplus
#define EXPORT extern "C" _declspec (dllexport)
#else
#define EXPORT _declspec (dllexport)
#endif
EXPORT int add(int,int);
testdll.cpp代码如下
#include "testdll.h"
EXPORT int add(int x,int y)
{
return x+y;
}
testapp.app代码如下:
#include<iostream.h>
#include"testdll.h"
void main()
{
cout<<add(12,13)<<endl;
}
说明:
我在vc中建立了一个Workspace,包含两个project:testapp和testdll,两个工程建立了Dependenies
问题:
编译可以通过,连接时报错如下:
Linking...
Creating library Debug/testapp.lib and object Debug/testapp.exp
LIBCD.lib(wincrt0.obj) : error LNK2001: unresolved external symbol _WinMain@16
Debug/testapp.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
testapp.exe - 2 error(s), 0 warning(s)
希望高手指导一下。