Difference between revisions of "Lua:deAlloc"
Jump to navigation
Jump to search
(Created page with "Category:Lua {{CodeBox|'''function''' deAlloc(''address'', ''size'') ''':''' void}} Frees previously allocated memory. If ''size'' is provided, it specifies the size of...") |
m |
||
| Line 35: | Line 35: | ||
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
| + | |||
| + | {{Memory}} | ||
Revision as of 14:54, 25 June 2026
Frees previously allocated memory.
If size is provided, it specifies the size of the memory block to free.
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| address | Integer or CEAddressString | The address of the allocated memory block to free. |
| size | Integer (optional) | The size of the memory block to free. |
Returns
void — This function does not return any value.
Examples
local address = allocateMemory(1024)
-- Use the allocated memory here
printf("Address: 0x%X",address)
deAlloc(address, 1024)