winmain function

Solutions on MaxInterview for winmain function by the best coders in the world

showing results for - "winmain function"
Till
22 Aug 2019
1INT WinMain(HINSTANCE hInstance, 
2            HINSTANCE hPrevInstance, 
3            PSTR lpCmdLine,
4            INT nCmdShow)
5{
6	return 0;
7}
Dido
07 Jul 2020
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