#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)
そしてプログラム作品。