MachO: Implement GetSections()

This commit is contained in:
Katy Coe
2020-12-04 21:11:19 +01:00
parent bb0badeb40
commit 381486e322
3 changed files with 31 additions and 7 deletions

View File

@@ -124,5 +124,7 @@ namespace Il2CppInspector
var segment = pht.First(x => offset >= x.p_offset && offset < x.p_offset + x.p_filesz);
return segment.p_vaddr + offset - segment.p_offset;
}
// TODO: SElfReader.GetSections()
}
}