Difference between revisions of "Lua:getNameFromAddress"
Jump to navigation
Jump to search
(Redirected page to getAddress) |
(→Related Functions) |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | [[Category:Lua]] | |
+ | '''function''' getNameFromAddress(''address'') ''':''' string | ||
+ | |||
+ | Returns the symbolname for the given address. If no symbolname is found, it will return a hexadecimal string | ||
+ | |||
+ | ===Function Parameters=== | ||
+ | {|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0" | ||
+ | !align="left"|Parameter | ||
+ | !align="left"|Type | ||
+ | !style="width: 80%;background-color:white;" align="left"|Description | ||
+ | |- | ||
+ | |address | ||
+ | |[[CEAddressString]] | ||
+ | |The address to convert to a string | ||
+ | |} | ||
+ | |||
+ | |||
+ | {{LuaSeeAlso}} | ||
+ | |||
+ | === 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 |