OnTopReplica/src/OnTopReplica/Platforms/Other.cs
Lorenz Cuno Klopfenstein 1ac70ff5ec Clean up
2018-08-23 12:50:42 +02:00

19 lines
404 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;
}
}
}