| 42 | } |
| 43 | |
| 44 | void Library::Free() { |
| 45 | FreeLibrary(static_cast<HINSTANCE>(handle)); |
| 46 | handle = nullptr; |
| 47 | } |
| 48 | |
| 49 | void* Library::GetProcAddr(const char *name) const { |
| 50 | return GetProcAddress(static_cast<HINSTANCE>(handle), name); |
no outgoing calls
no test coverage detected