#pragma once #include struct ELFSection { uintptr_t base; uint64_t pages; }; struct ELFImage { uintptr_t entry; uint64_t section_count; ELFSection sections[1]; };