2022-10-01 10:15:56 +00:00
|
|
|
#pragma once
|
2022-10-07 15:54:05 +00:00
|
|
|
#include "sys/elf/Image.h"
|
2022-10-01 10:15:56 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace ELFLoader
|
|
|
|
{
|
2022-10-07 15:54:05 +00:00
|
|
|
ELFImage* load_elf_from_address(uintptr_t addr);
|
2022-10-11 17:33:48 +00:00
|
|
|
ELFImage* load_elf_from_filesystem(const char* filename);
|
2022-10-01 10:15:56 +00:00
|
|
|
}
|