Exemplo n.º 1
0
 public Utils(WindowList windowList, Common common, bool debug)
 {
     this.debug       = debug;
     this.windowList  = windowList;
     this.common      = common;
     backgroundThread = new Thread(new ThreadStart(BackgroundThread));
     // Clean up window handles in different thread
     backgroundThread.Start();
 }
Exemplo n.º 2
0
 public Core(WindowList windowList, Common common, bool debug = false)
     : base(windowList, common, debug)
 {
     ps = new ProcessStats(common);
 }