当前位置: 代码迷 >> C语言 >> 这种连接错误怎么解决?
  详细解决方案

这种连接错误怎么解决?

热度:353   发布时间:2008-06-14 20:32:48.0
这种连接错误怎么解决?
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/test.exe : fatal error LNK1120: 1 unresolved externals

我是初手用WIN32API写程序,不知怎么解决,只好每次都要重建工程这种蠢方法,郁闷!
#include<windows.h>

int WINAPI WinMain(HINSTANCE hinst, HINSTANCE prehinst,
         LPSTR lpCmdline, int nshowCmd)
{

MessageBox(NULL,TEXT("chencjs"),TEXT("OK"),MB_OK);
return 0;

}
----------------解决方案--------------------------------------------------------
你工程选错了吧?选Win32 Application
----------------解决方案--------------------------------------------------------
  相关解决方案