//Except where stated all code and programs in this project are the copyright of Jim Blackler, 2008. //jimblackler@gmail.com // //This is free software. Libraries and programs are distributed under the terms of the GNU Lesser //General Public License. Please see the files COPYING and COPYING.LESSER. using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; namespace JimBlackler.ShellExecute { internal class ProcessControl { public Process process; public bool killed = false; } }