Difference between revisions of "Lua:getNameFromAddress"
Jump to navigation
Jump to search
(→Related Functions) |
|||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | '''function''' getNameFromAddress(''address'') | + | [[Category:Lua]] |
+ | '''function''' getNameFromAddress(''address'') ''':''' string | ||
Returns the symbolname for the given address. If no symbolname is found, it will return a hexadecimal string | Returns the symbolname for the given address. If no symbolname is found, it will return a hexadecimal string | ||
Line 15: | Line 16: | ||
− | == | + | {{LuaSeeAlso}} |
− | * [[Lua]] | + | |
+ | === Related Functions === | ||
+ | * [[Lua:getAddress|getAddress]] | ||
+ | * [[Lua:getCommonModuleList|getCommonModuleList]] | ||
+ | * [[Lua:inModule|inModule]] | ||
+ | * [[Lua:inSystemModule|inSystemModule]] | ||
+ | * [[Lua:targetIs64Bit|targetIs64Bit]] | ||
+ | * [[Lua:enumModules|enumModules]] |
Latest revision as of 00:43, 25 January 2018
function getNameFromAddress(address) : string
Returns the symbolname for the given address. If no symbolname is found, it will return a hexadecimal string
Function Parameters[edit]
Parameter | Type | Description |
---|---|---|
address | CEAddressString | The address to convert to a string |