I have a library and I want to get all mangled function and variable names. I will put those names in a .def file to import them in another project. I'm programming in c++ using Vs2019, how can I get the function names for my .def file? I've thousand of functions and variables and I need a process to get them automatically
ADD. The dumpbin /archivemembers seems not work, it's possible retrieve the list of mangled names after the build of the library? Where are those names?