| 434 | } |
| 435 | |
| 436 | BOOL APIENTRY DllMain( HMODULE hModule, |
| 437 | DWORD ul_reason_for_call, |
| 438 | LPVOID lpReserved |
| 439 | ) |
| 440 | { |
| 441 | switch (ul_reason_for_call) |
| 442 | { |
| 443 | case DLL_PROCESS_ATTACH: |
| 444 | case DLL_THREAD_ATTACH: |
| 445 | case DLL_THREAD_DETACH: |
| 446 | case DLL_PROCESS_DETACH: |
| 447 | break; |
| 448 | } |
| 449 | return TRUE; |
| 450 | } |
| 451 | #pragma endregion |
| 452 | |
| 453 | void TestExplorerCommandRoot::init(IShellItemArray* items) |
nothing calls this directly
no outgoing calls
no test coverage detected