| 79 | }; |
| 80 | |
| 81 | DllLoadWatcher::DllLoadWatcher(std::string_view name) |
| 82 | : p(std::make_unique<Impl>()) { |
| 83 | p->mName = std::string(name); |
| 84 | } |
| 85 | |
| 86 | bool DllLoadWatcher::IsDllLoaded() const { |
| 87 | return GetModuleHandleA(p->mName.c_str()); |
nothing calls this directly
no outgoing calls
no test coverage detected