kill function for Win32 : Win32api : Buildin Module PYTHON TUTORIALS


PYTHON TUTORIALS » Buildin Module » Win32api »

 

kill function for Win32


def kill(pid):
    """kill function for Win32"""
    import win32api
    handle = win32api.OpenProcess(10, pid)
    return (!= win32api.TerminateProcess(handle, 0))

s = raw_input("Enter a command (exit to exit): ")
if s == "exit" :
   exit()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Buildin Module
» Win32api