C Board  

Go Back   C Board > General Programming Boards > Game Programming

Reply
 
LinkBack Thread Tools Display Modes
Old 05-06-2003, 05:41 PM   #1
Registered User
 
Join Date: Feb 2002
Posts: 73
Directx SDK Documentation

Hi! Can someone please tell me where I can find the Directx 7.0 SDK documentation? I know that many would suggest I get the SDK, or simply get a higher version of the Directx, but I cannot do either. The Directx 7.0 SDK is too large for my slow net connection to download. I do, of course, have the files necessary to develop for Directx 7, but I lack the all important documentation and tutorials that come with the SDK. Thanks to anyone who can provide me with any information! If it is not possible to get them seperatly, is it possible to use a download manager when getting the directx 7 SDK? Further, will the SDK properly install on Windows XP Home Edition? Thanks! ^_^
Zoalord is offline   Reply With Quote
Old 05-06-2003, 05:43 PM   #2
Registered User
 
Join Date: Feb 2002
Posts: 73
Sorry, I forgot to mention that the reason I can't develop for a higher version of Directx is because my target audience is older computers that may not yet have Directx 8 or 9.
Zoalord is offline   Reply With Quote
Old 05-06-2003, 06:47 PM   #3
Banned
 
frenchfry164's Avatar
 
Join Date: Oct 2001
Posts: 1,552
Just because you are using a newer version of the SDK does not mean you can't develop for DX 7. Thanks to COM, you can develop for your SDK version down.

I'm just like you, I got a slow dial-up connection. I got a 56k modem, but my ISP is limited to 24k. Trust me, this is the fastest dial-up ISP in my area *sigh*. Well, this summer I'll get DSL.

Oops, got off subject. I know how slow dial-up is, so I got my friend to download it. He's on cable. Thank goodness for friends .
frenchfry164 is offline   Reply With Quote
Old 05-07-2003, 07:41 PM   #4
Used Registerer
 
jdinger's Avatar
 
Join Date: Feb 2002
Posts: 1,065
Like frenchfry said you can still develop for Dx7 with the Dx8 or 9 SDK. You'll want to add the following line(s) to your source:

Code:
#ifndef DIRECTDRAW_VERSION
#define DIRECTDRAW_VERSION 0x0700
#endif
#ifndef DIRECTINPUT_VERSION
#define DIRECTINPUT_VERSION 0x0700
#endif
//etc, etc for each component you use
From the way your original question read it looks like you asking for the documentation and that you just want the help file/examples for Dx7 specific things, like Ddraw. If that's the case, I uploaded it to my site for you to download it here (5 MBs).
jdinger is offline   Reply With Quote
Old 05-08-2003, 06:07 AM   #5
Registered User
 
Join Date: Feb 2002
Posts: 73
Thanks so much to both of you! Jdinger, I really apperciate the fact that you loaded the documentation onto your site. I will download it as soon as I get home from school. Thanks! ^_^
Zoalord is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
DirectSound header issues dxfoo C++ Programming 0 03-19-2006 07:16 PM
Problems with DirectX 9.0 SDK includes SkyRaign Game Programming 12 12-23-2005 09:45 AM
Question.. pode Windows Programming 12 12-19-2004 07:05 PM
DirectX SDK and ActiveX SDK moemen ahmed A Brief History of Cprogramming.com 1 06-30-2002 04:16 AM
DirectX SDK c++_n00b Game Programming 6 04-04-2002 12:39 PM


All times are GMT -6. The time now is 10:34 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0 RC2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22