Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

View Compiler Mangled Names in C++

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: I find all the answers useful here. Accepting the one I liked best.

like image 319
Agnel Kurian Avatar asked Apr 16 '09 05:04

Agnel Kurian


1 Answers

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.

like image 199
aJ. Avatar answered Sep 22 '22 01:09

aJ.