Ja, schon klar, wenn ich aber folgendes mache:
Delphi-Quellcode:
var
dllname: string;
dllhand: thandle;
begin
dllname := 'irgendeine.dll';
dllhand := loadlibrary(PChar(dllname));
try
if dllhand > 0 then
begin
if Test(1) then Showmessage('OK')
end
finally
freelibrary(dllhand)
end
end;
Da weiß Delphi logischer weiße nix mit Test anzufangen, aber es ist eine Funktion aus der
DLL.
Oder wie meinst du sollte ich es sonst aufrufen.