| 354 | |
| 355 | namespace 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 { |
nothing calls this directly
no test coverage detected