On Sun, 21 Apr 2013 15:21:02 +0800, "Bruce Varley" <b...@NoSpam.com>
wrote:
This is a compiler error, not a linker error, so don't fret about the
libs just yet, you haven't gotten that far.
You can use the Visual Studio IDE to jump to the definition of these
constants or you can add this to your source to verify David's
suggestion:
#ifndef _WIN32_WINNT
#error _WIN32_WINNT not defined
#endif
#ifndef _WIN32
#error _WIN32 not defined
#endif
#ifndef _CONSOLE
#error _CONSOLE not defined
#endif
These will stop compiliation if your project is incorrectly targeted.