Skip to content

Commit ee85bb3

Browse files
Fix dumpbin command switch
The `/symbols` switch only outputs a summary; you need the `/exports` switch to list the decorated names.
1 parent 611df37 commit ee85bb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/build/reference/decorated-names.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ You can get the decorated form of a symbol name after you compile the source fil
7070

7171
#### To use DUMPBIN to view decorated names
7272

73-
1. To see the exported symbols in an .obj or .lib file, enter `dumpbin /symbols` `objfile` at a developer command prompt.
73+
1. To see the exported symbols in an .obj or .lib file, enter `dumpbin /exports` `objfile` at a developer command prompt.
7474

7575
2. To find the decorated form of a symbol, look for the undecorated name in parentheses. The decorated name is on the same line, after a pipe (|) character and before the undecorated name.
7676

0 commit comments

Comments
 (0)