#include <Windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
messagebox(NULL, L"1st WIN32 API !!!",L"note",MB_OK);
return 0;
}
这是我的问题:我为什么要使用
hInstance, hPrevInstance, lpCmdLine, nCmdShow
?代替使用我使用的
int WINAPI WinMain(HINSTANCE first, HINSTANCE second, LPSTR third, int fourth)
和程序工作。