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
Last modified
3 weeks ago
Last modified on 03/12/25 07:52:56
Note:
See TracWiki
for help on using the wiki.