When building my project, I get the following error:
I included it like this:Code:fatal error C1083: Cannot open include file: 'ntddcdrm.h': No such file or directory
What am I doing wrong?Code:#include "ntddcdrm.h"
Printable View
When building my project, I get the following error:
I included it like this:Code:fatal error C1083: Cannot open include file: 'ntddcdrm.h': No such file or directory
What am I doing wrong?Code:#include "ntddcdrm.h"
The compiler cannot find the file. Make sure that the directory that has this header file is in your include path.
Viggy
OK thanks.
I just assumed Microsoft shoved all these files in a directory where they would be found.
In checking for the location of this file on my computer, I find I don't even have it.
Why wouldn't it have been included when I installed VC++?
Can I somehow obtain this file?
What is that header file? It doesn't look like one of the standard SDK headers (that I'm aware of).
Did you install the proper SDK for what you're doing?
Viggy
I am attempting to copy audio tracks from a CD,
and was using this as a starting point.
http://support.microsoft.com/default...b;EN-US;138434
As it says in the KB article, the include file you require can be found in the DDK (Driver Development Kit) in the following location \Ddk\Src\Storage\Inc
So you need to get a copy of the DDK from Microsoft and install it.
Regards
Alan