We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ee54db commit 95dd366Copy full SHA for 95dd366
docs/cpp/definitions-and-declarations-cpp.md
@@ -43,7 +43,7 @@ __declspec( dllexport ) int i = 10; // Okay--export definition
43
#define DllImport __declspec( dllimport )
44
#define DllExport __declspec( dllexport )
45
46
-extern DllImport int k; // These are both correct and imply a
+extern DllExport int k; // These are both correct and imply a
47
DllImport int j; // declaration.
48
```
49
@@ -71,4 +71,4 @@ void func() {
71
**END Microsoft Specific**
72
73
## See Also
74
- [dllexport, dllimport](../cpp/dllexport-dllimport.md)
+ [dllexport, dllimport](../cpp/dllexport-dllimport.md)
0 commit comments