码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi 调用Dll的两种方式

时间:2016-03-18 00:12:26      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:

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的两种方式

标签:

原文地址:http://www.cnblogs.com/China3S/p/5289956.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!