I am following this tutorial: theForger's Win32 API Programming Tutorial
In section 4 (message looping) (Understanding the Message Loop), there is the code:
WNDPROC fWndProc = (WNDPROC)GetWindowLong(Msg.hwnd, GWL_WNDPROC);
fWndProc(Msg.hwnd, Msg.message, Msg.wParam, Msg.lParam);
I tried to compile it, but I got this error message:
GWL_WNDPROC undeclared
What can I do to fix it?