Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 621 Bytes

compiler-error-c2201.md

File metadata and controls

27 lines (20 loc) · 621 Bytes
description title ms.date f1_keywords helpviewer_keywords
Learn more about: Compiler Error C2201
Compiler Error C2201
05/03/2021
C2201
C2201

Compiler Error C2201

'identifier' : must have external linkage in order to be exported/imported

The exported identifier is static.

Example

The following sample generates C2286, and shows how to fix it:

// C2201.cpp
// compile with: /c
__declspec(dllexport) static void func() {}   // C2201 func() is static
__declspec(dllexport) void func2() {}   // OK

See also

Types of Linkage