OnTopReplica/OnTopReplica/Platforms/Other.cs
2013-05-03 18:16:42 +02:00

17 lines
426 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace OnTopReplica.Platforms {
class Other : PlatformSupport {
public override bool CheckCompatibility() {
MessageBox.Show(Strings.ErrorNoDwm, Strings.ErrorNoDwmTitle,
MessageBoxButtons.OK, MessageBoxIcon.Error);
return false;
}
}
}