1INT WinMain(HINSTANCE hInstance,
2 HINSTANCE hPrevInstance,
3 PSTR lpCmdLine,
4 INT nCmdShow)
5{
6 return 0;
7}
1INT WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
2 PSTR lpCmdLine, INT nCmdShow)
3{
4 return 0;
5}
1int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd);
2