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
| 1762 | |
| 1763 | |
| 1764 | class 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 | |
| 1783 | class LoadConfigData(DataContainer): |
no outgoing calls
no test coverage detected