Difference between revisions of "Auto Assembler:dealloc"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''Auto Assembler''' dealloc(''SybolName'') Deallocates a block of memory allocated with Auto Assembler:alloc. It always gets executed last, no matter where it is position…')
 
(See also)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''Auto Assembler''' dealloc(''SybolName'')
+
[[Category:Assembler]]
 +
'''Auto Assembler''' dealloc(''SymbolName'')
  
 
Deallocates a block of memory allocated with [[Auto Assembler:alloc|alloc]].  
 
Deallocates a block of memory allocated with [[Auto Assembler:alloc|alloc]].  
 
It always gets executed last, no matter where it is positioned in the code, and only actually frees the memory when all allocations have been freed. Only usable in a script designed as a cheat table. (e.g used for the disable cheat)
 
It always gets executed last, no matter where it is positioned in the code, and only actually frees the memory when all allocations have been freed. Only usable in a script designed as a cheat table. (e.g used for the disable cheat)
  
=== Function Parameters ===
+
=== Command Parameters ===
 
{|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0"
 
{|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0"
 
!align="left"|Parameter
 
!align="left"|Parameter
Line 21: Line 22:
 
== See also ==
 
== See also ==
 
* [[Cheat_Engine:Auto Assembler|Auto Assembler]]
 
* [[Cheat_Engine:Auto Assembler|Auto Assembler]]
 +
* [[Auto_Assembler:Commands|Auto Assembler Commands]]
  
=== Related Functions ===
+
=== Related Commands ===
 
* [[Auto Assembler:aobScan|aobScan]]
 
* [[Auto Assembler:aobScan|aobScan]]
 
* [[Auto Assembler:aobScanModule|aobScanModule]]
 
* [[Auto Assembler:aobScanModule|aobScanModule]]
 
* [[Auto Assembler:alloc|alloc]]
 
* [[Auto Assembler:alloc|alloc]]
 +
* [[Auto Assembler:createThread|createThread]]
 
* [[Auto Assembler:define|define]]
 
* [[Auto Assembler:define|define]]
 
* [[Auto Assembler:fullAccess|fullAccess]]
 
* [[Auto Assembler:fullAccess|fullAccess]]
Line 36: Line 39:
 
* [[Auto Assembler:registerSymbol|registerSymbol]]
 
* [[Auto Assembler:registerSymbol|registerSymbol]]
 
* [[Auto Assembler:unregisterSymbol|unregisterSymbol]]
 
* [[Auto Assembler:unregisterSymbol|unregisterSymbol]]
* [[Auto Assembler:LUA|LUA]]
+
* [[Auto Assembler:LUA ASM|LUA ASM]]
* [[Auto Assembler:ASM|ASM]]
 

Latest revision as of 00:28, 13 January 2018

Auto Assembler dealloc(SymbolName)

Deallocates a block of memory allocated with alloc. It always gets executed last, no matter where it is positioned in the code, and only actually frees the memory when all allocations have been freed. Only usable in a script designed as a cheat table. (e.g used for the disable cheat)

Command Parameters[edit]

Parameter Type Description
SymbolName string The allocated symbol name to deallocate


Examples[edit]

dealloc(SomeSymbol)

See also[edit]

Related Commands[edit]