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); } }