Lua:targetIsArm
Jump to navigation
Jump to search
Returns true if the target process is ARM based.
Function Parameters
This function has no parameters.
Returns
boolean — True if the target process is ARM based, otherwise false.
Examples
if targetIsArm() then
print("Target process is ARM based")
else
print("Target process is not ARM based")
end