How can I run the standard dumpbin utility inside my c ++ application?
1 answer
Try the system
:
std::system("path\\to\\dumpbin.exe /exports \"path\\to\\your\\library.dll\"");
- Thank you very much. problem solved. - Tailer73
|
Source: https://ru.stackoverflow.com/questions/228993/