Recently I did an introduction to the Windows API and I'm already in the part of creating windows. In one of the first applications I created I had use of ShowWindow
and UpdateWindow
after creating a window, but even without them the window continued to show.
I even created more windows to see if your invocation would be needed and these additional windows would also pop up.
So here's my question, is it really necessary to invoke them? Will it have any impact not to do? Or is it just a prevention measure?
Q. I put the C ++ tag because it is an API also used in this language