| 817 | |
| 818 | |
| 819 | BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) |
| 820 | { |
| 821 | if (ul_reason_for_call == DLL_PROCESS_ATTACH) |
| 822 | { |
| 823 | ReadINI(""); |
| 824 | ClearLog(); |
| 825 | if (Init()) |
| 826 | { |
| 827 | GetGameResolution(); |
| 828 | } |
| 829 | } |
| 830 | return TRUE; |
| 831 | } |
| 832 | |
| 833 | |
| 834 | #pragma region some asm |
nothing calls this directly
no test coverage detected