mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
idc.py: Fixed isLoaded()
This commit is contained in:
parent
b4552cb676
commit
8d9869b527
@ -88,7 +88,7 @@ def byteValue(F): return (F & MS_VAL) # quick replacement for Byte()
|
||||
|
||||
# Is the byte initialized?
|
||||
|
||||
def isLoaded(ea): hasValue(GetFlags(ea)) # any defined value?
|
||||
def isLoaded(ea): return hasValue(GetFlags(ea)) # any defined value?
|
||||
|
||||
MS_CLS = idaapi.MS_CLS # Mask for typing
|
||||
FF_CODE = idaapi.FF_CODE # Code ?
|
||||
|
Loading…
Reference in New Issue
Block a user