aboutsummaryrefslogtreecommitdiffstats
path: root/source/elf_load.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/elf_load.hpp')
-rw-r--r--source/elf_load.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/elf_load.hpp b/source/elf_load.hpp
new file mode 100644
index 0000000..722b19b
--- /dev/null
+++ b/source/elf_load.hpp
@@ -0,0 +1,12 @@
+#ifndef ELF_LOAD_HPP_
+#define ELF_LOAD_HPP_
+
+namespace elf
+{
+ using entry_t = void (*)();
+
+ entry_t load(void *file_data);
+}
+
+#endif // ELF_LOAD_HPP_
+