Delphi 调用Dll的两种方式

Posted ----赖格英-----

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi 调用Dll的两种方式相关的知识,希望对你有一定的参考价值。

unit Unit1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;
  function RunDllFuc(a,b:Double):Double;cdecl;externalTest_DLL.DLL;//方式一
  function RunDllFuc(a,b:Double):Double;stdcall;externalTest_DLL.DLL;//方式二
implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
  a,b:Double;
begin
  a:=RunDllFuc(a,b);
end;

end.

该例程在Delphi XE7下通过。

以上是关于Delphi 调用Dll的两种方式的主要内容,如果未能解决你的问题,请参考以下文章

java中调用dll文件的两种方法

delphi杀进程的两种方式

C++ DLL导出的两种方式和链接的两种方式

delphi中调用.OCX怎样进行的?万分感谢!

怎么调用动态链接库函数?

Delphi7程序调用C#写的DLL解决办法(转)