diff options
Diffstat (limited to 'inject')
-rw-r--r-- | inject/injectee.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/inject/injectee.cpp b/inject/injectee.cpp index 54120037..56eaffc0 100644 --- a/inject/injectee.cpp +++ b/inject/injectee.cpp @@ -664,8 +664,12 @@ patchModule(HMODULE hModule, * stack overflow), especially when those libraries use techniques like * modifying the hooked functions prolog (instead of patching IAT like we * do). + * + * See also: + * - http://www.nynaeve.net/?p=62 */ if (stricmp(szBaseName, "kernel32.dll") == 0 || + stricmp(szBaseName, "AcLayers.dll") == 0 || stricmp(szBaseName, "ConEmuHk.dll") == 0 || stricmp(szBaseName, "gameoverlayrenderer.dll") == 0 || stricmp(szBaseName, "gameoverlayrenderer64.dll") == 0) { |