public static IntPtr LoadLibrary(string name) { return(CustomLoadLibrary.GetDllAddress(name, true)); }
public static IntPtr GetProcAddress(IntPtr hModule, string procName) { return(CustomLoadLibrary.GetExportAddress(hModule, procName)); }