#include<windows.h>
int WINAPI WinMain(HINSTANCE hInstance,
   HINSTANCE hPrevInstance,
   LPSTR     lpCmdLine,
   int       nCmdShow)
{
MessageBox(NULL, "Hello World! " , "MsgBox", 0);
return 0;
}我用这个程序在vc05中编译时总提示有错误,好像说MessageBox的第二个参数不对,请高手指教!!