A generic widestring list for use in all versions of Delphi. It has all the capabilities you find in the TStrings class, can be sorted etc. Suitable for persistent storage.
MD5變換動態鏈接庫文件調用:(delphi例子)
=========================================================================
function transfer(tran:widestring):widestring stdcall external md5.dll name transfer
//edit1為輸入字符,edit2為輸出md5摘要
procedure TForm1.Button1Click(Sender: TObject)
begin
edit2.text:=transfer(edit1.Text)
end