Delphi plugin framework

后端 未结 5 1395
悲&欢浪女
悲&欢浪女 2021-02-13 18:53

I want to design Delphi plugin framework. There are three options:
1. DLL
2. BPL
3. COM interface

Every option has some disadvantage.

DLL - Promblem

5条回答
  •  死守一世寂寞
    2021-02-13 19:29

    We use DLLs, even when using only with a Delphi application. Dll forms are embedded in the main form and use Tabs instead of MDI. For DLL to work properly we also use a shared memory manager and built with runtime packages: vcl, rtl and our own package.

提交回复
热议问题