8 lines
160 B
C
8 lines
160 B
C
|
#pragma once
|
||
|
#include <stdint.h>
|
||
|
|
||
|
namespace ELFLoader
|
||
|
{
|
||
|
void* load_elf_from_address(uintptr_t addr);
|
||
|
void* load_elf_from_initrd(const char* filename);
|
||
|
}
|