Call function in c++ dll without header

前端 未结 6 572
借酒劲吻你
借酒劲吻你 2020-12-15 22:36

I would like to call a method from an dll, but i don\'t have the source neither the header file. I tried to use the dumpbin /exports to see the name of the method, but i can

6条回答
  •  抹茶落季
    2020-12-15 23:19

    Calling non-external functions is a great way to have your program break whenever the 3rd party DLL is updated.

    That said, the undname utility may also be helpful.

提交回复
热议问题