Files
Archive/netch/Netch/NativeMethods.cs
2024-03-05 02:32:38 -08:00

9 lines
210 B
C#

using System.Runtime.InteropServices;
namespace Netch;
public static class NativeMethods
{
[DllImport("dnsapi", EntryPoint = "DnsFlushResolverCache")]
public static extern uint RefreshDNSCache();
}