#define WINVER 0x0A00
#define _WIN32_WINNT 0x0A00
before any header that includes SDKDDKVer.h either directly or indirectly.
If using CMake, then in the CMakeLists.txt file just add these lines:
if(WIN32)
add_definitions(-DWINVER=0x0A00)
add_definitions(-D_WIN32_WINNT=0x0A00)
endif()
I hope this helps others.
Regards
Andrew