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