手上没有书 在此问一下dll的创建 编一
ibrary mydll;//dll动态链接库
uses
SysUtils,
Classes;
{$R *.RES}
function GetMax(Param1:integer;Param2:integer):integer;stdcall;
begin
if Param1>Param2 then
result:=Param1
else
result:=Param2;
end;
exports
GetMax;
begin
end.
怎样变为*.dll文件?!