| 107 | } |
| 108 | |
| 109 | BOOL APIENTRY DllMain(HMODULE hModule, DWORD reason, LPVOID lpReserved) |
| 110 | { |
| 111 | if (reason == DLL_PROCESS_ATTACH) |
| 112 | { |
| 113 | if (!IsUALPresent()) { InitializeASI(); } |
| 114 | } |
| 115 | else if (reason == DLL_PROCESS_DETACH) |
| 116 | { |
| 117 | WFP::onShutdownEvent().executeAll(); |
| 118 | } |
| 119 | return TRUE; |
nothing calls this directly
no test coverage detected