多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
> 引用DLL 可分为动静态两部分,根据需求自行定义。 以下简单说明: 使用时先申明导入过程 `procedureTest;external'test.dll';` 调用 Function 函数 ``` functiontest(a, b: Integer):Integer;stdcall;external'test.dll'; begin player.xxxxx; end; ``` > 其中test(a, b: Integer)为dll里stdcall为参数入栈方式dll写法。 自行参考delphi或其他编程语言