How can I run the standard dumpbin utility inside my c ++ application?



    1 answer 1

    Try the system :

     std::system("path\\to\\dumpbin.exe /exports \"path\\to\\your\\library.dll\""); 
    • Thank you very much. problem solved. - Tailer73