Holds resource directory entry data. struct: IMAGE_RESOURCE_DIRECTORY_ENTRY structure name: If the resource is identified by name this attribute will contain the name string. None otherwise. If identified by id, the id is available a
| 1676 | |
| 1677 | |
| 1678 | class ResourceDirEntryData(DataContainer): |
| 1679 | """Holds resource directory entry data. |
| 1680 | |
| 1681 | struct: IMAGE_RESOURCE_DIRECTORY_ENTRY structure |
| 1682 | name: If the resource is identified by name this |
| 1683 | attribute will contain the name string. None |
| 1684 | otherwise. If identified by id, the id is |
| 1685 | available at 'struct.Id' |
| 1686 | id: the id, also in struct.Id |
| 1687 | directory: If this entry has a lower level directory |
| 1688 | this attribute will point to the |
| 1689 | ResourceDirData instance representing it. |
| 1690 | data: If this entry has no further lower directories |
| 1691 | and points to the actual resource data, this |
| 1692 | attribute will reference the corresponding |
| 1693 | ResourceDataEntryData instance. |
| 1694 | (Either of the 'directory' or 'data' attribute will exist, |
| 1695 | but not both.) |
| 1696 | """ |
| 1697 | |
| 1698 | |
| 1699 | class ResourceDataEntryData(DataContainer): |
no outgoing calls
no test coverage detected