Returns the instance handle passed to our module's DllMain.
| 144 | |
| 145 | // Returns the instance handle passed to our module's DllMain. |
| 146 | HINSTANCE CTestPluginsModule::HInstance() noexcept |
| 147 | { |
| 148 | return g_hInstance; |
| 149 | } |
| 150 | |
| 151 | // DLL Entry Point |
| 152 | extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved) |
nothing calls this directly
no outgoing calls
no test coverage detected