@bugsplat/elfy
Version:
Tiny utility for parsing ELF/SELF files.
19 lines • 858 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ElfSectionHeader = void 0;
class ElfSectionHeader {
constructor(sectionNameOffset, sectionType, sectionFlags, sectionLoadAddress, sectionOffset, sectionSize, sectionLink, sectionInfo, sectionAlignment, sectionEntrySize) {
this.sectionNameOffset = sectionNameOffset;
this.sectionType = sectionType;
this.sectionFlags = sectionFlags;
this.sectionLoadAddress = sectionLoadAddress;
this.sectionOffset = sectionOffset;
this.sectionSize = sectionSize;
this.sectionLink = sectionLink;
this.sectionInfo = sectionInfo;
this.sectionAlignment = sectionAlignment;
this.sectionEntrySize = sectionEntrySize;
}
}
exports.ElfSectionHeader = ElfSectionHeader;
//# sourceMappingURL=section-header.js.map