Files
netch/Netch/Win32Native.cs
2021-02-14 10:58:51 +08:00

12 lines
259 B
C#

using System;
using System.Runtime.InteropServices;
namespace Netch
{
public static class Win32Native
{
[DllImport("User32", CharSet = CharSet.Auto, ExactSpelling = true)]
public static extern IntPtr GetForegroundWindow();
}
}