load existing lle modules from sys_module folder

This commit is contained in:
georgemoralis 2024-06-26 14:43:01 +03:00
parent 1b6cb32b34
commit 84a39e2fb0
3 changed files with 40 additions and 7 deletions

View file

@ -13,6 +13,13 @@
namespace Core {
using HLEInitDef = void (*)(Core::Loader::SymbolsResolver* sym);
struct SysModules {
std::string_view module_name;
HLEInitDef callback;
};
class Emulator {
public:
Emulator();