mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
11 lines
258 B
C#
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();
|
|
}
|
|
} |