diff options
author | KittenPopo <Pokeberry123@gmail.com> | 2022-07-04 17:19:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 02:19:57 +0200 |
commit | 5995a7462da970ee2102a0dd0047ebbcef519dd0 (patch) | |
tree | ce8a18c48a74ccedb8806ad04f230283203d9f37 /NorthstarDedicatedTest/ExploitFixes.h | |
parent | 22a1ce87fa1205aa15eff81d78dc7c0e87c251c9 (diff) | |
download | NorthstarLauncher-5995a7462da970ee2102a0dd0047ebbcef519dd0.tar.gz NorthstarLauncher-5995a7462da970ee2102a0dd0047ebbcef519dd0.zip |
Fix KHook hooking order to prevent missed hooks (#213)
Diffstat (limited to 'NorthstarDedicatedTest/ExploitFixes.h')
-rw-r--r-- | NorthstarDedicatedTest/ExploitFixes.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/NorthstarDedicatedTest/ExploitFixes.h b/NorthstarDedicatedTest/ExploitFixes.h index 1cafe758..d0754d72 100644 --- a/NorthstarDedicatedTest/ExploitFixes.h +++ b/NorthstarDedicatedTest/ExploitFixes.h @@ -5,6 +5,8 @@ namespace ExploitFixes { - void LoadCallback(HMODULE unused); - void LoadCallbackEngine(HMODULE baseAddress); -} // namespace ExploitFixes
\ No newline at end of file + // This callback will be ran muliple times on multiple module loads + void LoadCallback_MultiModule(HMODULE baseAddress); + + void LoadCallback_Full(HMODULE unused); +} // namespace ExploitFixes |