├── .gitignore ├── LICENSE ├── README.md ├── StdInjector ├── msvc │ ├── StdInjector.vcxproj │ ├── StdInjector.vcxproj.filters │ └── StdInjector.vcxproj.user └── src │ ├── StdInjector.cpp │ ├── precompiled.cpp │ └── precompiled.h ├── StdPatch.sln └── StdPatch ├── msvc ├── StdPatch.vcxproj ├── StdPatch.vcxproj.filters └── StdPatch.vcxproj.user └── src ├── Common ├── ArrayHelper.h ├── Console.cpp ├── Console.h ├── File.cpp ├── File.h ├── MemSearch.cpp ├── MemSearch.h ├── MemTools.cpp ├── MemTools.h ├── String.cpp └── String.h ├── StdPatch.cpp ├── main ├── Detour.cpp ├── Detour.h ├── Global.cpp ├── Global.h ├── Mods.cpp ├── Mods.h └── SDK.h └── public ├── opcode_len_calc.cpp └── opcode_len_calc.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/README.md -------------------------------------------------------------------------------- /StdInjector/msvc/StdInjector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdInjector/msvc/StdInjector.vcxproj -------------------------------------------------------------------------------- /StdInjector/msvc/StdInjector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdInjector/msvc/StdInjector.vcxproj.filters -------------------------------------------------------------------------------- /StdInjector/msvc/StdInjector.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdInjector/msvc/StdInjector.vcxproj.user -------------------------------------------------------------------------------- /StdInjector/src/StdInjector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdInjector/src/StdInjector.cpp -------------------------------------------------------------------------------- /StdInjector/src/precompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "precompiled.h" -------------------------------------------------------------------------------- /StdInjector/src/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdInjector/src/precompiled.h -------------------------------------------------------------------------------- /StdPatch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch.sln -------------------------------------------------------------------------------- /StdPatch/msvc/StdPatch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/msvc/StdPatch.vcxproj -------------------------------------------------------------------------------- /StdPatch/msvc/StdPatch.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/msvc/StdPatch.vcxproj.filters -------------------------------------------------------------------------------- /StdPatch/msvc/StdPatch.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/msvc/StdPatch.vcxproj.user -------------------------------------------------------------------------------- /StdPatch/src/Common/ArrayHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/Common/ArrayHelper.h -------------------------------------------------------------------------------- /StdPatch/src/Common/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/Common/Console.cpp -------------------------------------------------------------------------------- /StdPatch/src/Common/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/Common/Console.h -------------------------------------------------------------------------------- /StdPatch/src/Common/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/Common/File.cpp -------------------------------------------------------------------------------- /StdPatch/src/Common/File.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | bool FileExists(const char *pszName); -------------------------------------------------------------------------------- /StdPatch/src/Common/MemSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/Common/MemSearch.cpp -------------------------------------------------------------------------------- /StdPatch/src/Common/MemSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/Common/MemSearch.h -------------------------------------------------------------------------------- /StdPatch/src/Common/MemTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/Common/MemTools.cpp -------------------------------------------------------------------------------- /StdPatch/src/Common/MemTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/Common/MemTools.h -------------------------------------------------------------------------------- /StdPatch/src/Common/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/Common/String.cpp -------------------------------------------------------------------------------- /StdPatch/src/Common/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/Common/String.h -------------------------------------------------------------------------------- /StdPatch/src/StdPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/StdPatch.cpp -------------------------------------------------------------------------------- /StdPatch/src/main/Detour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/main/Detour.cpp -------------------------------------------------------------------------------- /StdPatch/src/main/Detour.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void InsertDebugEvents(); -------------------------------------------------------------------------------- /StdPatch/src/main/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/main/Global.cpp -------------------------------------------------------------------------------- /StdPatch/src/main/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/main/Global.h -------------------------------------------------------------------------------- /StdPatch/src/main/Mods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/main/Mods.cpp -------------------------------------------------------------------------------- /StdPatch/src/main/Mods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/main/Mods.h -------------------------------------------------------------------------------- /StdPatch/src/main/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/main/SDK.h -------------------------------------------------------------------------------- /StdPatch/src/public/opcode_len_calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/public/opcode_len_calc.cpp -------------------------------------------------------------------------------- /StdPatch/src/public/opcode_len_calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohtep/StdPatch/HEAD/StdPatch/src/public/opcode_len_calc.h --------------------------------------------------------------------------------