How can I determine which libraries are used in a Delphi program I don't have the source for?

后端 未结 4 908
借酒劲吻你
借酒劲吻你 2021-02-06 02:02

I have a windows .exe file, but the source code for it is missing. The developer was not responsible and left our company. I think it was a delphi/pascal program. The develop

4条回答
  •  鱼传尺愫
    2021-02-06 02:13

    No, It's practically impossible to reverse engineer a Delphi application. If you do, you got only a bunch of assembly. It's practically impossible to reconstruct which VCL functions are called, let alone which libraries are used.

    Unless this program contains some very genious and irreproducable logic it is best to start from scratch and write it all over.

提交回复
热议问题