GetPID

From Soldat Community Wiki
Revision as of 11:47, 15 August 2012 by Freeman (talk | contribs) (Created page with "===From the Scripting Manual=== ''function GetPID: integer;'' '''Parameter Info:''' None '''Description:''' This function will return the current Process ID of the S...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

From the Scripting Manual

function GetPID: integer;

Parameter Info:
 None

Description:
This function will return the current Process ID of the Soldat Server.
     

Examples

var
MyPID: integer;
begin
    MyPID := GetPID;
    WriteLn('Current PID: '+inttostr(MyPID));
end;


External Links