So I understand, when writing the following statement #include <stdio.h> the compiler searches for this header file in select search paths outlined in Visual Studio project properties. But what I don't understand is how this works for a header (*.h) files that are not installed by Visual Studios such as in the following include statement:
#include <Zydis/Defines.h>
I've tried Googling this question but was not able to find something that answered my question.Just to be clear where does the compiler look when encountering the above #include statement ?