摘要: 开使你的第一个DLL专案 1.File->Close all->File->New﹝DLL﹞代码://自动产生Code如下:ibrary Project2;//这有段废话。uses SysUtils, Classes;{$R *.RES}beginend.2.加个Func进来:代码:library Project2;uses SysUtils, Classes;Function MyMax ( X , Y : integer ) : integer ; stdcall ; begin if X > Y then Result := X else Result := Y. 阅读全文
posted @ 2012-02-09 21:28 IT少年 阅读(357) 评论(0) 推荐(0)