shadPS4/src/Core/PS4/Linker.h

17 lines
291 B
C
Raw Normal View History

2023-05-23 06:48:25 +02:00
#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);
};