Where to download windows xp platform SDK?

mans picture mans · Apr 20, 2011 · Viewed 33.6k times · Source

I want to compile a code that I have from long time ago using VS express 2005. The code needs windows.h which is not part of VS 2005 and I found that I need to install platform SDK. But I cannot find platform SDK for windows XP. Where can I download this platform SDK? Where can I find windows.h?

Answer

Cody Gray picture Cody Gray · Apr 20, 2011

You don't need to find the SDK for Windows XP. Each release of the Windows SDK targets the latest version of Windows, as well as several previous versions. You should always install the latest version of the SDK unless you are targeting an extremely old version of the OS. At this point, Windows XP doesn't quite count (yet).

All you need to do is make sure that you set the appropriate target version when compiling your project. To target Windows XP, you should simply define WINVER to version 0x0501, like so:

#define WINVER 0x0501

You can find more information about targeting specific versions of Windows using the headers here.

And you can download the latest SDK here: http://msdn.microsoft.com/en-us/windows/bb980924