| 138 | } |
| 139 | |
| 140 | BOOL APIENTRY DllMain(HMODULE hModule, DWORD reason, LPVOID lpReserved) |
| 141 | { |
| 142 | if (reason == DLL_PROCESS_ATTACH) |
| 143 | { |
| 144 | if (!IsUALPresent()) { InitializeASI(); } |
| 145 | } |
| 146 | else if (reason == DLL_PROCESS_DETACH) |
| 147 | { |
| 148 | WFP::onShutdownEvent().executeAll(); |
| 149 | } |
| 150 | return TRUE; |
nothing calls this directly
no test coverage detected