Du kan lave en funktion i dll-filen som er af typen stddcall:
library Kryptering;
function Password : String; stdcall;
begin
Result := 'Password';
end;
exports
Password;
så deklarerer du den bare i dit projekt:
function Password : String; stdcall; external 'Kryptering.dll';
_______________________________________
-----------------------{ nife}------------------------_______________________________________
[Redigeret d. 24/05-04 10:58:13 af Nicolai Lyster Fersner]