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

16 lines
413 B
C#

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