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.
13 lines
157 B
C++
13 lines
157 B
C++
4 years ago
|
#ifndef ELF_LOAD_HPP_
|
||
|
#define ELF_LOAD_HPP_
|
||
|
|
||
|
namespace elf
|
||
|
{
|
||
|
using entry_t = void (*)();
|
||
|
|
||
|
entry_t load(void *file_data);
|
||
|
}
|
||
|
|
||
|
#endif // ELF_LOAD_HPP_
|
||
|
|