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