I am trying to include the Ntddvdeo library in my C++ WinAPI application but I get the error Error: Cannot open source file Ntddvdeo.h
How can I include Ntddvdeo.h in my program?
I need to include it just to use one variable, the GUID_DEVINTERFACE_MONITOR variable. Any advice on how I can include the library? Do I need to include a specific dll or lib?
The ntddvdeo.h is a header in the windows driver kit. If all you need is the value for the GUID, you can just define it somewhere in your code yourself.