</pre><p>初学Windows编程,用vs2010建立一个空工程,头文件中只包含Windows.h时,编译出现错误,代码很简单,如下</p><p></p><pre name="code" class="cpp">#include <Windows.h>
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,PSTR szCmdLine,int iCmdShow)
{
return 0;
}
错误提示
1>MSVCRTD.lib(crtexe.obj) : error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup
1>E:\Start\Document\test\WinHello\Debug\WinHello.exe : fatal error LNK1120: 1 unresolved externals
解决方法:
打开Project -> <工程名>Properties-> Configuration Properties -> Linker -> System ->SubSystem
可以看到SubSystem本来写的是Console(/SUBSYSTEM:CONSOLE)
在这里改为Windows(/SUBSYSTEM:Windows)
编译通过