mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
25 lines
456 B
C++
25 lines
456 B
C++
#include <exec.hpp>
|
|
|
|
#include <memory.hpp>
|
|
#include <lock.hpp>
|
|
#include <msexec.h>
|
|
#include <cwalk.h>
|
|
#include <elf.h>
|
|
#include <abi.h>
|
|
|
|
#include "../../kernel.h"
|
|
#include "../../Fex.hpp"
|
|
|
|
using namespace Tasking;
|
|
|
|
namespace Execute
|
|
{
|
|
ELFBaseLoad ELFLoadDyn(void *BaseImage,
|
|
VirtualFileSystem::File *ExFile,
|
|
Tasking::PCB *Process)
|
|
{
|
|
fixme("Not implemented");
|
|
return {};
|
|
}
|
|
}
|