5 |
|
using RomCheater.PluginFramework.Core; |
6 |
|
using System.Diagnostics; |
7 |
|
using System.Security.Principal; |
8 |
+ |
using RomCheater.Logging; |
9 |
|
|
10 |
|
namespace RomCheater.CorePlugins.Config |
11 |
|
{ |
14 |
|
public GenericConfig() : base() { } |
15 |
|
public GenericConfig(bool doinit) : base(doinit) { } |
16 |
|
|
17 |
< |
protected override bool IsNotValidProcess(ProcContainer p) { return false; } |
17 |
> |
protected override bool IsNotValidProcess(ProcContainer p) |
18 |
> |
{ |
19 |
> |
logger.Debug.WriteLine(" Allowing process {0} to be added",p.Name); |
20 |
> |
return false; |
21 |
> |
} |
22 |
|
#region IPluginBase Members |
23 |
|
public override Guid ID |
24 |
|
{ |