├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── mingw-w64-x86_64.cmake ├── news_icon.png ├── news_icon.xcf ├── postbuild.template ├── src ├── args.cpp ├── args.h ├── dllmain.cpp ├── hooks.cpp ├── hooks.h ├── loader.cpp ├── loader.h ├── pch.c ├── pch.cpp ├── pch.h ├── processing.cpp ├── processing.h ├── test_runner.cpp ├── unreal.cpp ├── unreal.h ├── util.cpp ├── util.h └── version.h.in ├── tests ├── basic_mod.URL ├── basic_mod.bl3hotfix ├── easy_entry_to_fort_sunshine.bl3hotfix ├── mods_dir │ ├── _early_exec.bl3hotfix │ ├── easy_entry_to_fort_sunshine.bl3hotfix │ └── unicode_statement.bl3hotfix ├── multi_exec.URL ├── multi_exec.bl3hotfix ├── nested_exec.bl3hotfix ├── news.bl3hotfix ├── single_exec.bl3hotfix ├── sorted_files │ ├── 1.txt │ ├── 10.txt │ ├── 5.txt │ ├── a.txt │ ├── b.txt │ └── c.txt └── unicode_statement.bl3hotfix ├── user-includes.cmake.template └── versioninfo.rc.in /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/README.md -------------------------------------------------------------------------------- /mingw-w64-x86_64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/mingw-w64-x86_64.cmake -------------------------------------------------------------------------------- /news_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/news_icon.png -------------------------------------------------------------------------------- /news_icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/news_icon.xcf -------------------------------------------------------------------------------- /postbuild.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/postbuild.template -------------------------------------------------------------------------------- /src/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/args.cpp -------------------------------------------------------------------------------- /src/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/args.h -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/hooks.cpp -------------------------------------------------------------------------------- /src/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/hooks.h -------------------------------------------------------------------------------- /src/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/loader.cpp -------------------------------------------------------------------------------- /src/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/loader.h -------------------------------------------------------------------------------- /src/pch.c: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/pch.h -------------------------------------------------------------------------------- /src/processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/processing.cpp -------------------------------------------------------------------------------- /src/processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/processing.h -------------------------------------------------------------------------------- /src/test_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/test_runner.cpp -------------------------------------------------------------------------------- /src/unreal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/unreal.cpp -------------------------------------------------------------------------------- /src/unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/unreal.h -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/util.h -------------------------------------------------------------------------------- /src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/src/version.h.in -------------------------------------------------------------------------------- /tests/basic_mod.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/tests/basic_mod.URL -------------------------------------------------------------------------------- /tests/basic_mod.bl3hotfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/tests/basic_mod.bl3hotfix -------------------------------------------------------------------------------- /tests/easy_entry_to_fort_sunshine.bl3hotfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/tests/easy_entry_to_fort_sunshine.bl3hotfix -------------------------------------------------------------------------------- /tests/mods_dir/_early_exec.bl3hotfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/tests/mods_dir/_early_exec.bl3hotfix -------------------------------------------------------------------------------- /tests/mods_dir/easy_entry_to_fort_sunshine.bl3hotfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/tests/mods_dir/easy_entry_to_fort_sunshine.bl3hotfix -------------------------------------------------------------------------------- /tests/mods_dir/unicode_statement.bl3hotfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/tests/mods_dir/unicode_statement.bl3hotfix -------------------------------------------------------------------------------- /tests/multi_exec.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/tests/multi_exec.URL -------------------------------------------------------------------------------- /tests/multi_exec.bl3hotfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/tests/multi_exec.bl3hotfix -------------------------------------------------------------------------------- /tests/nested_exec.bl3hotfix: -------------------------------------------------------------------------------- 1 | exec single_exec.bl3hotfix 2 | -------------------------------------------------------------------------------- /tests/news.bl3hotfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/tests/news.bl3hotfix -------------------------------------------------------------------------------- /tests/single_exec.bl3hotfix: -------------------------------------------------------------------------------- 1 | exec basic_mod.bl3hotfix 2 | -------------------------------------------------------------------------------- /tests/sorted_files/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sorted_files/10.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sorted_files/5.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sorted_files/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sorted_files/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sorted_files/c.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unicode_statement.bl3hotfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/tests/unicode_statement.bl3hotfix -------------------------------------------------------------------------------- /user-includes.cmake.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/user-includes.cmake.template -------------------------------------------------------------------------------- /versioninfo.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple1417/OpenHotfixLoader/HEAD/versioninfo.rc.in --------------------------------------------------------------------------------