| 130 | } |
| 131 | |
| 132 | BOOL APIENTRY DllMain(HMODULE hModule, DWORD reason, LPVOID lpReserved) |
| 133 | { |
| 134 | if (reason == DLL_PROCESS_ATTACH) |
| 135 | { |
| 136 | if (!IsUALPresent()) { InitializeASI(); } |
| 137 | } |
| 138 | return TRUE; |
| 139 | } |
nothing calls this directly
no test coverage detected