MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / ClassHierarchyDescriptor

Method ClassHierarchyDescriptor

plugins/rtti/microsoft.cpp:23–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21
22
23ClassHierarchyDescriptor::ClassHierarchyDescriptor(BinaryView *view, uint64_t address)
24{
25 BinaryReader reader = BinaryReader(view);
26 reader.Seek(address);
27 signature = reader.Read32();
28 attributes = reader.Read32();
29 numBaseClasses = reader.Read32();
30 pBaseClassArray = static_cast<int32_t>(reader.Read32());
31}
32
33
34BaseClassDescriptor::BaseClassDescriptor(BinaryView *view, uint64_t address)

Callers

nothing calls this directly

Calls 3

BinaryReaderClass · 0.50
SeekMethod · 0.45
Read32Method · 0.45

Tested by

no test coverage detected