mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-19 04:58:27 +00:00
17 lines
291 B
C
17 lines
291 B
C
|
#pragma once
|
||
|
#include "../../Loader/Elf.h"
|
||
|
|
||
|
/*this struct keeps neccesary info about loaded modules.Main executeable is included too as well*/
|
||
|
struct Module
|
||
|
{
|
||
|
Elf* elf = nullptr;
|
||
|
};
|
||
|
|
||
|
class Linker
|
||
|
{
|
||
|
public:
|
||
|
Linker();
|
||
|
virtual ~Linker();
|
||
|
|
||
|
Module* LoadModule(const std::string& elf_name);
|
||
|
};
|