aboutsummaryrefslogtreecommitdiffstats
path: root/source/elf_load.hpp
blob: 3e03f1da29846de18c5d2a85ddef1908522b5cac (plain)
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_