| 32 | |
| 33 | |
| 34 | BaseClassDescriptor::BaseClassDescriptor(BinaryView *view, uint64_t address) |
| 35 | { |
| 36 | BinaryReader reader = BinaryReader(view); |
| 37 | reader.Seek(address); |
| 38 | pTypeDescriptor = static_cast<int32_t>(reader.Read32()); |
| 39 | numContainedBases = reader.Read32(); |
| 40 | where_mdisp = static_cast<int32_t>(reader.Read32()); |
| 41 | where_pdisp = static_cast<int32_t>(reader.Read32()); |
| 42 | where_vdisp = static_cast<int32_t>(reader.Read32()); |
| 43 | attributes = reader.Read32(); |
| 44 | pClassHierarchyDescriptor = static_cast<int32_t>(reader.Read32()); |
| 45 | } |
| 46 | |
| 47 | |
| 48 | BaseClassArray::BaseClassArray(BinaryView *view, uint64_t address, uint32_t length) : length(length) |
nothing calls this directly
no test coverage detected