摘要:
因为个人需要研究了一下封装类到DLL。把他发表出来用Delphi封装类到DLL。一个公共单元 1 unit ITest; 2 3 interface 4 5 type 6 IT = interface 7 function GetString:string; 8 procedure ShowMsg(p:PChar); 9 procedure Msg;10 end;11 12 implementation13 14 end.类单元,这个写在DLL里面的 1 unit UTest; 2 3 interface 4 5 uses 6 SysUtils, 7... 阅读全文
posted @ 2012-08-26 22:47
儒国
阅读(4980)
评论(4)
推荐(2)
浙公网安备 33010602011771号