OnTopReplica/OnTopReplica/Platforms/DebugPlatform.cs
Lorenz Cuno Klopfenstein d83527e1f9 Fixed platform specific initialization (split in pre/post handle creation init steps).
Added some debugging classes (shell hook interceptor and a fake debug platform).
2010-11-17 00:59:41 +01:00

23 lines
376 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OnTopReplica.Platforms {
#if DEBUG
/// <summary>
/// Fake platform for debugging.
/// </summary>
class DebugPlatform : PlatformSupport {
public override bool CheckCompatibility() {
return true;
}
}
#endif
}