I was testing some Win32 apps with c++, and in this code:
LRESULT CALLBACK WindowProc(
_In_ HWND hwnd,
_In_ UINT uMsg,
_In_ WPARAM wParam,
_In_ LPARAM lParam
);
Looking at this MSDN Documentation, I couldn't really understand what the HWND is?
It says: A handle to the window.
. What does that mean?
The answer is there behind the "Conceptual" section link on the MSDN page you refer to.
About Windows - Window Handle:
About Window Procedures