Difference between revisions of "Lua:getNameFromAddress"
Jump to navigation
Jump to search
(→Related Functions) |
|||
(4 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}} | |
− | |||
− | |||
=== Related Functions === | === Related Functions === | ||
− | * [[getAddress]] | + | * [[Lua:getAddress|getAddress]] |
− | * [[getCommonModuleList]] | + | * [[Lua:getCommonModuleList|getCommonModuleList]] |
− | * [[inModule]] | + | * [[Lua:inModule|inModule]] |
− | * [[inSystemModule]] | + | * [[Lua:inSystemModule|inSystemModule]] |
− | * [[targetIs64Bit]] | + | * [[Lua:targetIs64Bit|targetIs64Bit]] |
− | * [[enumModules]] | + | * [[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 |