| 67 | } |
| 68 | |
| 69 | BOOL APIENTRY DllMain(HMODULE hModule, DWORD reason, LPVOID lpReserved) |
| 70 | { |
| 71 | if (reason == DLL_PROCESS_ATTACH) |
| 72 | { |
| 73 | if (!IsUALPresent()) { InitializeASI(); } |
| 74 | } |
| 75 | return TRUE; |
| 76 | } |
nothing calls this directly
no test coverage detected