I need to update a old June DX10 application.
My original setup was such that i had the include files and libraries for DX10 as part of my repo. This compiles and runs fine, but causes hundred of warning on macro redefinitions when i'm compiling it on Win10 using VS2015 with the VS2013 compiler.
I wanted to fix the warrnings and so i consulted this blog post from microsoft. After following the steps there (Modifying the project’s VC++ directories and changing my includes), the project won't compile as it's doesn't know what a lot of classes and definitions i used are... For example D3DMATRIX gives me syntax error/undeclared identifier.
What is the correct course of updating my project?