include()
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at include(). C++ Specific
Disables automatic exclusion.
Syntax
include
("Name1"[,"Name2", ...])
Parameters
Name1
First item to be forcibly included.
Name2
Second item to be forcibly included (if necessary).
Remarks
Type libraries may include definitions of items defined in system headers or other type libraries. #import
attempts to avoid multiple definition errors by automatically excluding such items. If items have been excluded, as indicated by Compiler Warning (level 3) C4192, and they should not have been, this attribute can be used to disable the automatic exclusion. This attribute can take any number of arguments, each being the name of the type-library item to be included.
END C++ Specific