Hey,
I just began studying Win API with VC++ and often when I try to compile, some identifier (such as WM_MOUSEWHEEL) are not defined because of this line in winuser.h :
#if (_WIN32_WINNT >= 0x0400) || (_WIN32_WINDOWS > 0x0400)
//declarations such as
#define WM_MOUSEWHEEL 0x020A
What does this line mean and how can I fix it. Thank you for the help.
I just began studying Win API with VC++ and often when I try to compile, some identifier (such as WM_MOUSEWHEEL) are not defined because of this line in winuser.h :
#if (_WIN32_WINNT >= 0x0400) || (_WIN32_WINDOWS > 0x0400)
//declarations such as
#define WM_MOUSEWHEEL 0x020A
What does this line mean and how can I fix it. Thank you for the help.