Skip to content

Commit bed1fb5

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#113 from van9petryk/patch-1
Update definitions-and-declarations-cpp.md
2 parents 7ee54db + 95dd366 commit bed1fb5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/cpp/definitions-and-declarations-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ __declspec( dllexport ) int i = 10; // Okay--export definition
4343
#define DllImport __declspec( dllimport )
4444
#define DllExport __declspec( dllexport )
4545
46-
extern DllImport int k; // These are both correct and imply a
46+
extern DllExport int k; // These are both correct and imply a
4747
DllImport int j; // declaration.
4848
```
4949

@@ -71,4 +71,4 @@ void func() {
7171
**END Microsoft Specific**
7272

7373
## See Also
74-
[dllexport, dllimport](../cpp/dllexport-dllimport.md)
74+
[dllexport, dllimport](../cpp/dllexport-dllimport.md)

0 commit comments

Comments
 (0)