Ide Indy Delphi

Codec By GeNiUS !
genius@turkiye.com
Delphi'de DLL hazırlamak hiç te zor değil.
Aşağıdaki kod örneği derlendiğinde, uzantısı otomatik olarak,DLL olarak verilecektir..
Bu DLL "Fonksiyon" isimli tek bir fonksiyon ihraç etmektedir.
library Dllframe;
uses WinTypes;
function Fonksiyon : string ; export ;
begin
Result := 'DLL' den merhaba!' ;
end;
exports
Fonksiyon;
begin
end.