Answers for "winmain function"

C++
2

how to use winmain function

INT WinMain(HINSTANCE hInstance, 
            HINSTANCE hPrevInstance, 
            PSTR lpCmdLine,
            INT nCmdShow)
{
	return 0;
}
Posted by: Guest on May-18-2020
0

winmain function

INT WINAPI WinMain(
                    HINSTANCE hInstance, //instance number for the os
                    HINSTANCE hPrevInstance, //meaningless parameter used in 16-bit Windows 
                    PSTR lpCmdLine,  //command-line arguments as unicode string
                    INT nCmdShow //flag that says whether the main application window will be minimized, maximized, or shown
    			 )
{
	/* code */
    return 0;
}
Posted by: Guest on July-07-2021

Browse Popular Code Answers by Language