-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
Fixed the params order of `process_vm_readv_k32`
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,11 +135,11 @@ public struct IoVec | |
/// but with an API similar to <see cref="Kernel32.ReadProcessMemory" />. | ||
/// </summary> | ||
/// <param name="processId">Id of the process to read from.</param> | ||
/// <param name="localIov">Local memory address.</param> | ||
/// <param name="remoteIov">Remote memory address.</param> | ||
/// <param name="localIov">Local memory address.</param> | ||
/// <param name="numBytes">Memory size.</param> | ||
/// <returns>True on success, else false.</returns> | ||
public static unsafe bool process_vm_readv_k32(nint processId, nuint localIov, nuint remoteIov, nuint numBytes) | ||
public static unsafe bool process_vm_readv_k32(nint processId, nuint remoteIov, nuint localIov, nuint numBytes) | ||
Check warning on line 142 in src/Reloaded.Memory/Native/Unix/Posix.cs GitHub Actions / build (ubuntu-latest, net7.0, x64)
Check warning on line 142 in src/Reloaded.Memory/Native/Unix/Posix.cs GitHub Actions / build (ubuntu-latest, net7.0, x64)
Check warning on line 142 in src/Reloaded.Memory/Native/Unix/Posix.cs GitHub Actions / build (ubuntu-latest, net6.0, x64)
Check warning on line 142 in src/Reloaded.Memory/Native/Unix/Posix.cs GitHub Actions / build (ubuntu-latest, net6.0, x64)
Check warning on line 142 in src/Reloaded.Memory/Native/Unix/Posix.cs GitHub Actions / build (ubuntu-latest, net5.0, x64)
Check warning on line 142 in src/Reloaded.Memory/Native/Unix/Posix.cs GitHub Actions / build (ubuntu-latest, net5.0, x64)
Check warning on line 142 in src/Reloaded.Memory/Native/Unix/Posix.cs GitHub Actions / build (ubuntu-latest, netcoreapp3.1, x64)
Check warning on line 142 in src/Reloaded.Memory/Native/Unix/Posix.cs GitHub Actions / build (ubuntu-latest, netcoreapp3.1, x64)
|
||
{ | ||
IoVec local = new() { iov_base = localIov, iov_len = numBytes }; | ||
IoVec remote = new() { iov_base = remoteIov, iov_len = numBytes }; | ||
|