Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.46 KB

importlib.md

File metadata and controls

57 lines (42 loc) · 1.46 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: importlib
importlib (C++ COM Attribute)
10/02/2018
vc-attr.importlib
importlib attribute
f129e459-b8d3-4aca-a0bc-ee53e18b62ed

importlib

Makes types that have already been compiled into another type library available to the type library being created.

Syntax

[ importlib("tlb_file") ];

Parameters

tlb_file
The name of a .tlb file, in quotes, that you want imported into the type library of the current project.

Remarks

The importlib C++ attribute causes an importlib statement to be placed in the library block of the generated .idl file. The importlib attribute has the same functionality as the importlib MIDL attribute.

Example

The following code shows an example of how to use importlib:

// cpp_attr_ref_importlib.cpp
// compile with: /LD
[module(name="MyLib")];
[importlib("importlib.tlb")];

Requirements

Attribute context Value
Applies to Anywhere
Repeatable No
Required attributes None
Invalid attributes None

For more information, see Attribute Contexts.

See also

Compiler Attributes
Stand-Alone Attributes
import
importidl
include
includelib