Thread: Directx SDK Documentation

  1. #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! ^_^

  2. #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.

  3. #3
    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 .

  4. #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).

  5. #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! ^_^

Popular pages Recent additions subscribe to a feed

Similar Threads

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