bloxstrap/Bloxstrap/Utility/NativeMethods.cs
2023-07-15 22:52:44 +01:00

14 lines
342 B
C#

using System.Runtime.InteropServices;
namespace Bloxstrap.Utility
{
static class NativeMethods
{
[DllImport("user32.dll")]
public static extern bool SetForegroundWindow(IntPtr hWnd);
[DllImport("user32.dll")]
public static extern bool FlashWindow(IntPtr hWnd, bool bInvert);
}
}