| 207 | |
| 208 | // DLL Entry Point |
| 209 | extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved) |
| 210 | { |
| 211 | #ifdef _MERGE_PROXYSTUB |
| 212 | if (!PrxDllMain(hInstance, dwReason, lpReserved)) |
| 213 | return FALSE; |
| 214 | #endif |
| 215 | g_hInstance = hInstance; |
| 216 | return _AtlModule.DllMain(dwReason, lpReserved); |
| 217 | } |
nothing calls this directly
no outgoing calls
no test coverage detected