MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / BoundImportDescData

Class BoundImportDescData

pythonmemorymodule/pefile.py:1764–1780  ·  view source on GitHub ↗

Holds bound import descriptor data. This directory entry will provide information on the DLLs this PE file has been bound to (if bound at all). The structure will contain the name and timestamp of the DLL at the time of binding so that the loader can know whether it differs from

Source from the content-addressed store, hash-verified

1762
1763
1764class BoundImportDescData(DataContainer):
1765 """Holds bound import descriptor data.
1766
1767 This directory entry will provide information on the
1768 DLLs this PE file has been bound to (if bound at all).
1769 The structure will contain the name and timestamp of the
1770 DLL at the time of binding so that the loader can know
1771 whether it differs from the one currently present in the
1772 system and must, therefore, re-bind the PE's imports.
1773
1774 struct: IMAGE_BOUND_IMPORT_DESCRIPTOR structure
1775 name: DLL name
1776 entries: list of entries (BoundImportRefData instances)
1777 the entries will exist if this DLL has forwarded
1778 symbols. If so, the destination DLL will have an
1779 entry in this list.
1780 """
1781
1782
1783class LoadConfigData(DataContainer):

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected