Killing processes on Windows

I don't know if it is just as easy to kill something in windows as it is
*nix. But there is a TerminateProcess() function for windows. You can
probably get to it through the win32api extension module. (not sure of its
official name off the top of my head).

jw

···

-----Original Message-----
From: gary.h.merrill@gsk.com [mailto:gary.h.merrill@gsk.com]
Sent: Thursday, June 12, 2003 2:39 PM
To: wxPython-users@lists.wxwindows.org
Subject: Re: [wxPython-users] Killing processes on Windows

Thanks. I had not managed to stumble across any
wxProcess_Kill reference
despite combing through the doc, samples, and grepping various things.

I've also recently found the process.py implementation at
http://starship.python.net/~tmick/#process which also looks promising.

I gather that supporting this kind of thing on Windows is a
bit of a sore
point because of (should we say somewhat delicately) Window's
design and
maturity as an operating system.