| 196 | } |
| 197 | |
| 198 | BOOL APIENTRY DllMain(HMODULE hModule, DWORD reason, LPVOID lpReserved) |
| 199 | { |
| 200 | if (reason == DLL_PROCESS_ATTACH) |
| 201 | { |
| 202 | if (!IsUALPresent()) { InitializeASI(); } |
| 203 | } |
| 204 | return TRUE; |
| 205 | } |
nothing calls this directly
no test coverage detected