ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Core/ConfigPlugin.cs
(Generate patch)

Comparing trunk/RomCheater.PluginFramework/Core/ConfigPlugin.cs (file contents):
Revision 173 by william, Mon May 28 09:15:17 2012 UTC vs.
Revision 174 by william, Mon May 28 09:21:52 2012 UTC

# Line 1 | Line 1
1   //#define DISABLE_VERBOSE_LOGGING_FOR_PERFORMANCE_BOOST // when defined will disable verbose logging for performance speed-up
2   //#define DISALLOW_VERBOSE_LOGGING // when defined will disallow verbose logging for performance reasons
3 + #define ALLOW_SYSTEM_PROCESSES_TO_BE_INLUCDED // when defined system processes will be included in process list
4   using System;
5   using System.Collections.Generic;
6   using System.Linq;
# Line 51 | Line 52 | namespace RomCheater.PluginFramework.Cor
52                  {
53                      bool isSystem = false;
54                      string proc_user = ThreadControl.GetProcessOwner(proc.Handle, out isSystem).ToLower();
55 + #if !ALLOW_SYSTEM_PROCESSES_TO_BE_INLUCDED
56                      if (isSystem)
57                      {
58   #if !DISALLOW_VERBOSE_LOGGING
# Line 58 | Line 60 | namespace RomCheater.PluginFramework.Cor
60   #endif
61                          continue;
62                      }
63 + #endif
64                      ProcContainer container = null;
65                      try
66                      {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines