/showIncludes - List Include Files (Windows CE 5.0)

Send Feedback

This option causes the compiler to output a list of the include files. Nested include files, or files that are included from the files that you include, are also displayed .

/showIncludes

Remarks

When an include file is encountered during compilation, a message is output, for example:

Note: including file: d:\MyDir\include\stdio.h

Nested include files are indicated by an indentation, one space for each level of nesting. For example:

Note: including file: d:\temp\1.h
Note: including file:  d:\temp\2.h

In this case, 2.h was included from within 1.h, and hence is indented one space.

Note   /showIncludes emits to stderr, not stdout.

See Also

Compiler Options

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.