mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 11:17:45 +02:00
* Refactor to easily set command-line options
This commit is contained in:
parent
14ac1c26d2
commit
296638644a
@ -56,6 +56,8 @@ type
|
||||
end;
|
||||
|
||||
procedure ReloadEnvironmentStrings;
|
||||
procedure SetCommandLineParams(aExe : String; Pars : Array of string);
|
||||
procedure ReloadParamStrings;
|
||||
|
||||
implementation
|
||||
|
||||
@ -102,12 +104,19 @@ begin
|
||||
else
|
||||
SetLength(Pars,0);
|
||||
SetLength(Params,1+Length(Pars));
|
||||
SetCommandLineParams(Window.location.pathname,Pars);
|
||||
end;
|
||||
|
||||
procedure SetCommandLineParams(aExe : String; Pars : Array of string);
|
||||
|
||||
var
|
||||
I : integer;
|
||||
begin
|
||||
Params[0]:=Window.location.pathname;
|
||||
For I:=0 to Length(Pars)-1 do
|
||||
Params[1+I]:=Pars[I];
|
||||
end;
|
||||
|
||||
|
||||
function GetParamCount: longint;
|
||||
begin
|
||||
Result:=Length(Params)-1;
|
||||
|
Loading…
Reference in New Issue
Block a user