MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / LoadLib

Function LoadLib

Source/Tools/LinuxEmulation/Thunks.cpp:356–365  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

354
355namespace ThunkFunctions {
356 void LoadLib(void* ArgsV) {
357 struct LoadlibArgs {
358 const char* Name;
359 };
360
361 auto Args = reinterpret_cast<LoadlibArgs*>(ArgsV);
362 auto ThunkHandler = reinterpret_cast<ThunkHandler_impl*>(FEX::HLE::_SyscallHandler->GetThunkHandler());
363
364 ThunkHandler->LoadLib(Args->Name);
365 }
366
367 void IsLibLoaded(void* ArgsRV) {
368 struct ArgsRV_t {

Callers

nothing calls this directly

Calls 2

GetThunkHandlerMethod · 0.80
LoadLibMethod · 0.80

Tested by

no test coverage detected