Files
netch/Netch/Win32Native.cs
ChsBuffer ac0800ec56 Reformat
2021-02-20 18:15:16 +08:00

11 lines
258 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();
}
}