Kill a process in Windows

  • warning: include(/tmp/fortune.txt): failed to open stream: No such file or directory in /home/mohawksoft/org/www/htdocs/includes/common.inc(1696) : eval()'d code on line 1.
  • warning: include(): Failed opening '/tmp/fortune.txt' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/mohawksoft/org/www/htdocs/includes/common.inc(1696) : eval()'d code on line 1.
int kill(DWORD pid)
{
        HANDLE hProcess = OpenProcess (SYNCHRONIZE | PROCESS_TERMINATE, TRUE, pid);
        if (hProcess != NULL)
        {
                TerminateProcess (hProcess, -1);
                CloseHandle (hProcess);
                return 0;
        }
        return 1;
}