Lua:allocateMemory
Revision as of 09:51, 20 May 2022 by LeFiXER (talk | contribs) (Created page with "Category:Lua '''function''' allocateMemory(''size'', ''BaseAddress'' '''''OPTIONAL''''', ''Protection'' '''''OPTIONAL''''') Allocates a specified size of memory into the...")
function allocateMemory(size, BaseAddress OPTIONAL, Protection OPTIONAL)
Allocates a specified size of memory into the target process.
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| Size | Integer | The size of memory to allocate. |
| Base Address | Integer | The address of the location to allocate memory. |
| Protection | Boolean | Protect the allocated memory, or not. |