├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md └── src └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiennt/KeyPatcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiennt/KeyPatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiennt/KeyPatcher/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiennt/KeyPatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiennt/KeyPatcher/HEAD/README.md -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiennt/KeyPatcher/HEAD/src/main.cpp --------------------------------------------------------------------------------