Link to home
Start Free TrialLog in
Avatar of anesk
anesk

asked on

Compiling legacy MSVC++ project, missing include files

We are attempting to compile a legacy C++ project using MSVC++ 6.0. We have very little knowledge of the project structure/technology used. The project has not been compiled since 2001.

Compilation fails because some include files are missing, we suspect the project uses a sort of DirectX SDK.

Here is the list of the files:
#include <dxtrans.h>  // DXSurface header file
#include <dxterror.h> // DXSurface error codes
#include <dxbounds.h> // Contains the CDXDVec and CDXDBnds classes used in this program
#include <dxtmsft.h>

Any ideas where we can get the files/complete SDK? Is versioning significant?

Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

Avatar of anesk
anesk

ASKER

Installing direct x August 2007 SDK helped us finding one of the missing include files - dxtrans.h, but we still cannot find the other three...
ASKER CERTIFIED SOLUTION
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of anesk

ASKER

Thank you very much, this is what we are looking for!