Help File:Disassembler

From Cheat Engine
Revision as of 19:53, 29 July 2021 by LeFiXER (talk | contribs) (Created page with "==Disassembler== This function will allow you to give it an address and it will return the disassembled output. '''Function Definition''' ''BOOL Disassembler(ULONG address,...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Disassembler[edit]

This function will allow you to give it an address and it will return the disassembled output.

Function Definition

BOOL Disassembler(ULONG address, char* output, int maxsize);
address:
The address of the instruction you want to disassemble.
output:
Pointer to the buffer the disassembled string will be placed in.
maxsize:
Maximum size the string can be.


Returns TRUE if there was enough memory to store the string. The returned string is built up as "Address - bytes - instruction".