Registriert seit: 6. Nov 2007
668 Beiträge
Delphi 7 Personal
|
Re: dll Problem
11. Jan 2008, 17:51
zur Zeit so
Delphi-Quellcode:
unit Einbinden1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm3 = class(TForm)
Label1: TLabel;
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form3: TForm3;
implementation
type TSummenFunktion = function(zahl1, zahl2: integer): integer; stdcall;
function addieren(zahl1, zahl2: integer): integer;
var SummenFunktion: TSummenFunktion;
Handle: THandle;
begin
Handle := LoadLibrary(PChar(ExtractFilePath(ParamStr(0))+' rechnen.dll'));
if Handle <> 0 then begin
@SummenFunktion := GetProcAddress( Handle, ' addiere');
if @SummenFunktion <> nil then begin
result:=SummenFunktion(zahl1, zahl2);
end;
FreeLibrary( Handle);
{$R *.dfm}
end;
end;
end.
Sebastian
ölpölp
Linux will rule the universe!!
|
|
Zitat
|