首页 > 代码库 > Delphi调用Dll的的2种写法
Delphi调用Dll的的2种写法
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
//定义类型要与原函数一样
function GetUserDefaultUILanguage():Integer;external ‘Kernel32.DLL‘;
type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
if GetUserDefaultUILanguage() = $0804 then
begin
Caption:=‘简体中文‘;
end
else
begin
Caption:=‘英文‘;
end;
end;
//方法2 使用LoadLibrary
procedure TForm1.Button2Click(Sender: TObject);
var
h:THandle;
pFunc:function():Integer;stdcall;
begin
h:=LoadLibrary(PChar(‘Kernel32.DLL‘));
if h=0 then Exit;
pFunc:= GetProcAddress(h,PChar(‘GetUserDefaultUILanguage‘));
if Assigned(pFunc) then
if pFunc() = $0804 then
begin
Caption:=‘简体中文‘;
end
else
begin
Caption:=‘英文‘;
end;
FreeLibrary(h);
end; procedure TForm1.Button3Click(Sender: TObject);
var
h:THandle;
pFunc:function():Integer;stdcall;
begin
h:=LoadLibrary(‘Kernel32.DLL‘);
if h=0 then Exit;
@pFunc:= GetProcAddress(h,‘GetUserDefaultUILanguage‘);
if Assigned(pFunc) then
if pFunc() = $0804 then
begin
Caption:=‘CHS‘;
end
else
begin
Caption:=‘ENGLISH‘;
end;
FreeLibrary(h);
end;
end.
来自为知笔记(Wiz)
附件列表
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。