| 3021 | HMODULE h; |
| 3022 | public: |
| 3023 | DynamicLibraryImpl(const char *modulePath) { |
| 3024 | h = ::LoadLibraryA(modulePath); |
| 3025 | } |
| 3026 | |
| 3027 | virtual ~DynamicLibraryImpl() { |
| 3028 | if (h != NULL) |
nothing calls this directly
no outgoing calls
no test coverage detected