Hi
I'm using the Visual Studio 7 EnvDTE API to gather information about my C++ source code, in particular, any includes that appear in my source files but I cannot find out which file (with path) that the include statement points to.
For example:
file editor.cpp has
I need to know the absolute path to this text.h file. i think i could even get by with the relative path.
From what i can see of the API i can only get the path of the source file editor.cpp that the include statement appears in.
Any help would be great.
Stevoie
I'm using the Visual Studio 7 EnvDTE API to gather information about my C++ source code, in particular, any includes that appear in my source files but I cannot find out which file (with path) that the include statement points to.
For example:
file editor.cpp has
Code:
include <text.h>
From what i can see of the API i can only get the path of the source file editor.cpp that the include statement appears in.
Any help would be great.
Stevoie