1INT WinMain(HINSTANCE hInstance,
2 HINSTANCE hPrevInstance,
3 PSTR lpCmdLine,
4 INT nCmdShow)
5{
6 return 0;
7}
1INT WINAPI WinMain(
2 HINSTANCE hInstance, //instance number for the os
3 HINSTANCE hPrevInstance, //meaningless parameter used in 16-bit Windows
4 PSTR lpCmdLine, //command-line arguments as unicode string
5 INT nCmdShow //flag that says whether the main application window will be minimized, maximized, or shown
6 )
7{
8 /* code */
9 return 0;
10}
11