You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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_
|
|
|