Where VC++ finds header files

Hi,

when i put a header file at the beginning of a c++ application, like this:

#include <windows.h>

Have i to put also in the Header Files folder of my project

 

In case afirmative, where can i find the header files like "windows.h"

Thanks

 



Answer this question

Where VC++ finds header files

  • RicardoJB

    No: you do not have to add these header files to your project - all you have to do is to ensure that you tell the compiler where to find them: though for system header files like windows.h this shouldn't be necessary because in most cases the project system already knows where to find them.

  • Where VC++ finds header files