Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ VirtualAlloc()

static IntPtr Interop.VirtualAlloc ( SafeHandle baseAddress,
UIntPtr size,
int allocationType,
int protection )
inlinestatic

Definition at line 213 of file Interop.cs.

214 {
215 return Kernel32.VirtualAlloc(baseAddress, size, allocationType, protection);
216 }

References Interop.Kernel32.VirtualAlloc().