我照书写的源代码
源代码如下:
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
   PSTR szCmdLine, int iCmdShow)
{
MessageBox(NULL, TEXT("hello, Windows98!"), TEXT("helloMsg"), 0); return 0;
}执行时出现
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/HelloMsg.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.HelloMsg.exe - 2 error(s), 0 warning(s)
请问是怎么回事?