(self, *argl, **argd)
| 1148 | """Convenience section handling class.""" |
| 1149 | |
| 1150 | def __init__(self, *argl, **argd): |
| 1151 | if "pe" in argd: |
| 1152 | self.pe = argd["pe"] |
| 1153 | del argd["pe"] |
| 1154 | |
| 1155 | Structure.__init__(self, *argl, **argd) |
| 1156 | self.PointerToRawData_adj = None |
| 1157 | self.VirtualAddress_adj = None |
| 1158 | self.section_min_addr = None |
| 1159 | self.section_max_addr = None |
| 1160 | |
| 1161 | def get_PointerToRawData_adj(self): |
| 1162 | if self.PointerToRawData_adj is None: |