can you please explain to me the significance of this statement generally written at the end of the WinMain()
function:
return (int) msg.wParam;
Im used to ending my console applications with return 0;
is it wrong for windows applications?
Thank you.