Delphi- DLL 작업
5407 단어 Delphi
정적 링크는 응용 프로그램에서 호출된 라이브러리 함수 COPY를 응용 프로그램에 복사하는 것입니다.동적 링크, 프로그램이 어떤 DLL의 함수를 사용했을 때, 동적 링크는 COPY 코드를 사용하지 않거나, 실행 중 DLL의 위치에서 필요한 함수 코드를 찾을 수 있습니다.
첫 번째 방법:
생동감 있는 DLL, 직접 실행할 수 없습니다.prjoect에서complie를 누르거나 ctrl + F9을 누르면 생성된 DLL을 새 프로젝트에 복사합니다.
uses
SysUtils,
Classes;
{$R *.res}
function Max(x,y,z:Integer):Integer;stdcall;
var
t:Integer;
begin
if (x<y) then
t := y;
else
t := x;
if (t<z) then
t := z;
Result := t;
end;
begin
end.
테스트 호출 실행:
var
Form1: TForm1;
function Max(x,y,z:Integer):Integer;stdcall;external 'ProjectMax.dll';
implementation
{$R *.dfm}
procedure TForm1.btn1Click(Sender: TObject);
var
t: Integer;
begin
t := Max(3,4,1);
ShowMessage(IntToStr(t));
end;
DLL 동적 호출
type
Max = function(x,y,z:integer):integer; stdCall;
procedure TForm1.btn1Click(Sender: TObject);
var
temp: Integer;
handle: THandle;
FPointer: TFarProc;
MyFunc: Max;
begin
handle := LoadLibrary('ProjectMaxDll.dll');
if handle <> 0 then
begin
FPointer := GetProcAddress(handle,'Max');
if FPointer<>nil then
begin
MyFunc:= Max(FPointer);
temp:= MyFunc(1,2,3);
ShowMessage(IntToStr(temp));
end
else
begin
end
end
else
ShowMessage(' !');
end;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[Delphi] TStringBuilder그리고 꼭 사용해야만 할까? 그림처럼 Heap 영역에 "Hello" 공간을 생성하고 포인팅을 한다. "Hello World" 공간을 새로 생성한 후 포인팅을 하게 된다. 결국 "Hello" 라는 String 객체가 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.