Difference between revisions of "GetPID"

From Soldat Community Wiki
Jump to: navigation, search
(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...")
 
(No difference)

Latest revision as of 11:47, 15 August 2012

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