IN: process USING: alien compiler io io-internals kernel math parser generic win32-api ; : (run-process) ( string flag -- ) >r f swap f f 0 r> f f "STARTUPINFO" "STARTUPINFO" c-size over set-STARTUPINFO-cb "PROCESS_INFORMATION" CreateProcess win32-error=0 ; : run-process ( string -- ) 0 (run-process) ; : run-detached ( string -- ) DETACHED_PROCESS (run-process) ;