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.

16 lines
218 B
C++

#ifndef ELF_LOAD_HPP_
#define ELF_LOAD_HPP_
#include <cstddef>
#include <cstdint>
namespace elf
{
using entry_t = uint16_t *(*)(uint16_t *, size_t);
entry_t load(void *elf_data);
}
#endif // ELF_LOAD_HPP_