├── .clang-format ├── .gitignore ├── LICENSE ├── README.adoc ├── azure-pipelines.yml ├── project.4coder └── source ├── build.c ├── checks.c ├── language_layer.h ├── linux ├── build.c ├── checks.inc └── patches.inc ├── main.c ├── options.h ├── patches.c ├── patches.h ├── pattern.h ├── strings.c ├── strings.h └── win32 ├── build.c ├── checks.inc ├── patches.inc └── win32.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/README.adoc -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /project.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/project.4coder -------------------------------------------------------------------------------- /source/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/build.c -------------------------------------------------------------------------------- /source/checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/checks.c -------------------------------------------------------------------------------- /source/language_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/language_layer.h -------------------------------------------------------------------------------- /source/linux/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/linux/build.c -------------------------------------------------------------------------------- /source/linux/checks.inc: -------------------------------------------------------------------------------- 1 | CHECK(version_check, 0x4CF4F3, "0.4.29") 2 | -------------------------------------------------------------------------------- /source/linux/patches.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/linux/patches.inc -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/main.c -------------------------------------------------------------------------------- /source/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/options.h -------------------------------------------------------------------------------- /source/patches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/patches.c -------------------------------------------------------------------------------- /source/patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/patches.h -------------------------------------------------------------------------------- /source/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/pattern.h -------------------------------------------------------------------------------- /source/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/strings.c -------------------------------------------------------------------------------- /source/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/strings.h -------------------------------------------------------------------------------- /source/win32/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/win32/build.c -------------------------------------------------------------------------------- /source/win32/checks.inc: -------------------------------------------------------------------------------- 1 | CHECK(version_check, 0x3B9970, "0.4.29") 2 | -------------------------------------------------------------------------------- /source/win32/patches.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/win32/patches.inc -------------------------------------------------------------------------------- /source/win32/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniiii/patcher/HEAD/source/win32/win32.c --------------------------------------------------------------------------------