mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
12 lines
381 B
C#
12 lines
381 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Eavesdrop
|
|
{
|
|
internal static class NativeMethods
|
|
{
|
|
[DllImport("wininet.dll", SetLastError = true, CharSet = CharSet.Auto)]
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
public static extern bool InternetSetOption(IntPtr hInternet, int dwOption, IntPtr lpBuffer, int dwBufferLength);
|
|
}
|
|
} |