Fix VirtualFree function signature
This commit is contained in:
parent
192dd2d26b
commit
b72d8e237d
1 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ namespace ChocolArm64.Memory
|
||||||
[DllImport("kernel32.dll")]
|
[DllImport("kernel32.dll")]
|
||||||
private static extern bool VirtualFree(
|
private static extern bool VirtualFree(
|
||||||
IntPtr lpAddress,
|
IntPtr lpAddress,
|
||||||
uint dwSize,
|
IntPtr dwSize,
|
||||||
AllocationType dwFreeType);
|
AllocationType dwFreeType);
|
||||||
|
|
||||||
[DllImport("kernel32.dll")]
|
[DllImport("kernel32.dll")]
|
||||||
|
@ -127,7 +127,7 @@ namespace ChocolArm64.Memory
|
||||||
|
|
||||||
public static bool Free(IntPtr address)
|
public static bool Free(IntPtr address)
|
||||||
{
|
{
|
||||||
return VirtualFree(address, 0, AllocationType.Release);
|
return VirtualFree(address, IntPtr.Zero, AllocationType.Release);
|
||||||
}
|
}
|
||||||
|
|
||||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue