PDA

View Full Version : Where to get old DirectX SDKs?


DangerCode
11-28-2004, 01:12 PM
I'm looking for an old DirectX SDK (namely, DirectX 7.0), but searching through MS's website isn't helping me at all.

Can anyone point me to the right place?

Mike Boeh
11-28-2004, 02:14 PM
They aren't easy to find, but you really do not need them. If you want to compile against an older version of DirectX, you can just do defines like this:

//this would compile against DirectX 3 for directdraw
#define DIRECTDRAW_VERSION 0x0300

If you need the older docs, then that's a bit more of a problem :)

GameStudioD
11-28-2004, 02:22 PM
http://nebula.student.utwente.nl/downloads.php

DangerCode
11-28-2004, 02:45 PM
Thanks, guys.