| 4 | #include "XivAlexanderCommon/Utils/Win32/Process.h" |
| 5 | |
| 6 | Utils::Win32::InjectedModule::InjectedModule() |
| 7 | : m_rpModule(nullptr) |
| 8 | , m_path() |
| 9 | , m_hProcess() { |
| 10 | } |
| 11 | |
| 12 | Utils::Win32::InjectedModule::InjectedModule(Process hProcess, std::filesystem::path path) |
| 13 | : m_rpModule(hProcess.LoadModule(path)) |
nothing calls this directly
no test coverage detected