INNO SETUP 获得命令行参数

原文 http://www.cnblogs.com/ahuo/archive/2009/07/30/1534998.html


[Code]

function GetMyParam(PName:String):String;
var
  CmdLine : String;
  CmdLineLen : Integer;
  i : Integer;
begin
    CmdLineLen:=ParamCount();
    for i:= to CmdLineLen do
    begin
    CmdLine:=ParamStr(i);
    if CmdLine= PName then
      begin
          CmdLine:=ParamStr(i+);
          Result := CmdLine;
          Exit;
      end;
    end;
end;
上一篇:Linux分区练习(1)


下一篇:HDU 5765 Bonds(状压DP)