| 20 | constexpr const wchar_t* exe_filename = L"MediaInfo.exe"; |
| 21 | |
| 22 | BOOL APIENTRY DllMain(_In_ HMODULE hModule, _In_ DWORD ul_reason_for_call, _In_opt_ LPVOID lpReserved) { |
| 23 | UNREFERENCED_PARAMETER(hModule); |
| 24 | UNREFERENCED_PARAMETER(lpReserved); |
| 25 | switch (ul_reason_for_call) { |
| 26 | case DLL_PROCESS_ATTACH: |
| 27 | case DLL_THREAD_ATTACH: |
| 28 | case DLL_THREAD_DETACH: |
| 29 | case DLL_PROCESS_DETACH: |
| 30 | break; |
| 31 | } |
| 32 | return TRUE; |
| 33 | } |
| 34 | |
| 35 | namespace { |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected