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
7 years ago
Last modified on 04/12/18 13:06:40
Note:
See TracWiki
for help on using the wiki.