= KillProcess = Kill the specified process {{{ void KillProcess(int nPid); }}} == Parameters == * nPid - process ID of the process to kill == Return Value == Function does not return a result. == Remarks == == Examples == {{{ int n = GetProcessID("wtsvr"); if(n != 0) { // This will kill the weight server process KillProcess(n); } }}} == See Also == * [wiki:GetProcessID GetProcessID] * [wiki:GetProcessIDExcludeSelf GetProcessIDExcludeSelf]