I'm trying to move our project over to VS2008 from VS2005 and am running in to this build error on an MFC project:
C:\Program Files\Microsoft SDKs\Windows\v6.0A\include\winnt.h(236) : error C2146: syntax error : missing ';' before identifier 'PVOID64'
I thought this was an SDK issue or an include directory ordering issue as some forums have suggested but that doesn't seem to be the problem. Has anyone seen this before? What should I be looking for when trying to track this down?
I'm also wondering if I need to increase the WINVER preprocessor flags in my project's stdafx. They are pretty old:
#ifndef WINVER
#define WINVER 0x0500
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0500
#endif
#ifndef _WIN32_WINDOWS
#define _WIN32_WINDOWS 0x0510
#endif
#ifndef _WIN32_IE
#define _WIN32_IE 0x0500
#endif
Thanks