Re: [ctypes-users] copying/slicing ctypes arrays, (c_ulong *n)()
Brought to you by:
theller
From: Ray S <ra...@bl...> - 2004-12-17 19:41:51
|
import win32process si = win32process.STARTUPINFO() p = win32process.CreateProcess(None, # module "python test.py", #command line None, #process security attributes None, #thread security attributes 0, #handle inheritance flag #win32process.THREAD_PRIORITY_TIME_CRITICAL, #creation flags REALTIME_PRIORITY_CLASS win32process.REALTIME_PRIORITY_CLASS, None, # process new environment setting None, #start directory si) #STARTUPINFO object specifying window appearance |