dllmain.cpp : Defines the entry point for the DLL application.
| 26 | |
| 27 | // dllmain.cpp : Defines the entry point for the DLL application. |
| 28 | BOOL APIENTRY DllMain( HMODULE hModule, |
| 29 | DWORD ul_reason_for_call, |
| 30 | LPVOID lpReserved |
| 31 | ) |
| 32 | { |
| 33 | switch( ul_reason_for_call ) |
| 34 | { |
| 35 | case DLL_PROCESS_ATTACH: |
| 36 | case DLL_THREAD_ATTACH: |
| 37 | case DLL_THREAD_DETACH: |
| 38 | case DLL_PROCESS_DETACH: |
| 39 | break; |
| 40 | } |
| 41 | return TRUE; |
| 42 | } |
nothing calls this directly
no outgoing calls
no test coverage detected