wiki:Docs/Prog/Manual/ApplicationLibraries/lib825ev/Process/KillProcess

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