| 16 | /* Only needed for MSVC++ unless extended to actually do something =) */ |
| 17 | #if defined(_WIN32) && defined(_MSC_VER) |
| 18 | BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) |
| 19 | { |
| 20 | hModule; ul_reason_for_call; lpReserved; |
| 21 | |
| 22 | if (ul_reason_for_call == DLL_PROCESS_ATTACH) { |
| 23 | //ilInit(); |
| 24 | } |
| 25 | |
| 26 | return TRUE; |
| 27 | } |
| 28 | #endif |
| 29 | |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected