Encapsulates the capability to contain Module objects.
|
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
bool
|
__contains__(self,
anObject)
Returns:
True if the snapshot contains a Module
object with the same base address. |
|
|
dictionary-valueiterator
|
|
int
|
|
|
__add_module(self,
aModule) |
|
|
|
__del_module(self,
lpBaseOfDll) |
|
|
|
__add_loaded_module(self,
event) |
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|
bool
|
has_module(self,
lpBaseOfDll)
Returns:
True if the snapshot contains a Module
object with the given base address. |
|
|
Module
|
get_module(self,
lpBaseOfDll)
Returns:
Module object with the given base address. |
|
|
dictionary-keyiterator
|
|
dictionary-valueiterator
|
|
list( int... )
|
|
int
|
|
Module
|
get_module_by_name(self,
modName)
Returns:
Module object that best matches the given name. |
|
|
Module
|
|
|
scan_modules(self)
Populates the snapshot with loaded modules. |
|
|
|
clear_modules(self)
Clears the modules snapshot. |
|
|
|
|
|
|
|
|