c++ - visual studio 2015 doesn't see the header -
i'm trying compile project connected drivers, vs doesn't see header files ntddk.h , vadefs.h. i've found both of them located in:
c:\program files (x86)\windows kits\10\include\10.0.14393.0\km
added them in projects properties:
but stil doesn't work..
you've got $
before path, it's getting confused , treating if want macro called $c:\program
don't have. use this:
c:\program files (x86)\windows kits\10\include\10.0.14393.0\km\;%(additionalincludedirectories)
Comments
Post a Comment