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