Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.32 KB

include-parens.md

File metadata and controls

42 lines (32 loc) · 1.32 KB
title ms.custom ms.date ms.technology ms.topic f1_keywords dev_langs helpviewer_keywords ms.assetid author ms.author ms.workload
include() | Microsoft Docs
11/04/2016
cpp-tools
reference
include()
C++
include() attribute
86c9dcb2-d9e0-4fd5-97d7-0bb3e23d6ecc
corob-msft
corob
cplusplus

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

See Also

#import Attributes
#import Directive