Files
lserp_cs_5.0/插件库/CommonLib/Cef3.24/Platform/Windows/NativeMethods.cs
T
2026-07-10 15:25:05 +08:00

17 lines
562 B
C#

namespace Cef3.Platform.Windows
{
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
internal static partial class NativeMethods
{
[DllImport("kernel32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto)]
public static extern IntPtr GetModuleHandle(string lpModuleName);
[DllImport("kernel32.dll", SetLastError = true)]
public static extern IntPtr LoadLibraryEx(string lpFileName, IntPtr hReservedNull, LoadLibraryFlags dwFlags);
}
}