@bugsplat/elfy
Version:
Tiny utility for parsing ELF/SELF files.
14 lines (13 loc) • 661 B
TypeScript
export declare class ElfSectionHeader {
readonly sectionNameOffset: number;
readonly sectionType: number;
readonly sectionFlags: bigint;
readonly sectionLoadAddress: bigint;
readonly sectionOffset: bigint;
readonly sectionSize: bigint;
readonly sectionLink: number;
readonly sectionInfo: number;
readonly sectionAlignment: bigint;
readonly sectionEntrySize: bigint;
constructor(sectionNameOffset: number, sectionType: number, sectionFlags: bigint, sectionLoadAddress: bigint, sectionOffset: bigint, sectionSize: bigint, sectionLink: number, sectionInfo: number, sectionAlignment: bigint, sectionEntrySize: bigint);
}