View Compiler Mangled Names in C++

后端 未结 6 794
孤城傲影
孤城傲影 2021-01-05 02:24

How do I view the compiler-generated mangled names for overloaded functions in C++? I\'m using VC9 but answers for other compilers are welcome too.

Edit:

6条回答
  •  长情又很酷
    2021-01-05 03:09

    You can see the decorated function names by using Dependency Walker.

    Open any DLL\EXE in dependency walker and in right pane you can see a list of decorated function names.

提交回复
热议问题