diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-08-25 00:30:30 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-14 12:53:02 +0200 |
commit | c120d0cceba005f661e66d4d95c96d0458cadfeb (patch) | |
tree | c677a9e7c31a7e33cef7170fab8e08db0364441d /NorthstarDLL/exploitfixes.h | |
parent | a39addd9aa09d0a01e6a5cee33ef5d8d8f30e7b6 (diff) | |
download | NorthstarLauncher-c120d0cceba005f661e66d4d95c96d0458cadfeb.tar.gz NorthstarLauncher-c120d0cceba005f661e66d4d95c96d0458cadfeb.zip |
Change file name case sensitivity to lower case (#249)
To mirror how it is in refactor PR
Diffstat (limited to 'NorthstarDLL/exploitfixes.h')
-rw-r--r-- | NorthstarDLL/exploitfixes.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/NorthstarDLL/exploitfixes.h b/NorthstarDLL/exploitfixes.h new file mode 100644 index 00000000..d0754d72 --- /dev/null +++ b/NorthstarDLL/exploitfixes.h @@ -0,0 +1,12 @@ +// KittenPopo's exploit fix hooks, feel free to add more here + +#pragma once +#include "pch.h" + +namespace ExploitFixes +{ + // This callback will be ran muliple times on multiple module loads + void LoadCallback_MultiModule(HMODULE baseAddress); + + void LoadCallback_Full(HMODULE unused); +} // namespace ExploitFixes |