#pragma once #include "elf.h" #include #include struct Section { elf::SectionHeader header; std::string name; std::vector data; }; struct Rpl { elf::Header header; uint32_t fileSize; std::vector
sections; }; uint32_t getSectionIndex(const Rpl &rpl, const Section §ion);