示例#1
0
 public override IntPtr MemoryCopy(IntPtr dest, IntPtr src, UIntPtr count) => Win32Api.memcpy(dest, src, count);
示例#2
0
 public override IntPtr LoadLibrary(string dllPath) => Win32Api.LoadLibrary(dllPath);
示例#3
0
 public override IntPtr GetProcAddress(IntPtr handle, string procName) => Win32Api.GetProcAddress(handle, procName);
示例#4
0
 public override void FreeLibrary(IntPtr hModule) => Win32Api.FreeLibrary(hModule);