1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef ELF_LOAD_HPP_ #define ELF_LOAD_HPP_ #include <cstddef> #include <cstdint> namespace elf { using entry_t = void (*)(uint16_t *, size_t); entry_t load(void *elf_data, void *elf_load_offset); } #endif // ELF_LOAD_HPP_