随笔分类 - 插件框架
插件框架的完整实现
摘要:对于DELPHI来说,总共支持俩种类型的插件:DLL和BPL方式的插件。对于比较完美的插件框架来说,俩种类型的插件都要支持。unit DLLLoader;interfaceuses windows, Classes, SysUtils, Forms, StrUtils;type TLibraryType = (dll, bpl); // plugin type: dll or bpl TDLLLoader = class(TObject) private FHandle: THandle; FFileName: string; FLibraryType: TLibraryType; proce
阅读全文
摘要:支持DLL和BPL俩种格式的插件。没有使用三方控件。
阅读全文

浙公网安备 33010602011771号