Article ID: 102390
Article Last Modified on 12/1/2003
#include <filename.h>-or-
#include "filename.h"Because the dependency scanner does not have a preprocessor, it will include headers file in the dependency list even if they conditionally included using an #ifdef as shown below.
#define _WIN32 #ifndef _WIN32 #include <sys/unixstuf.h> #endifTo get the desired behavior:
You can list in [MSVCINCL.DAT] additional files that you want to exclude, such as headers for external class libraries or some of the include files in a large project. You should use this file for additions because SYSINCL.DAT may be overwritten if you reinstall Visual C++, if you modify your installation with Setup, or if you update your installation. . . . These lists should contain only files that are not likely to change often.
Keywords: kbinfo kbide KB102390