├── .clang-format ├── .gitattributes ├── LICENSE ├── README.md ├── babb.h ├── new_replacements.cpp ├── test.cpp └── tostudycode ├── win32_binary_patching_process_loader.c └── win32_inplace_process_binary_patcher.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsutter/babb/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsutter/babb/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsutter/babb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsutter/babb/HEAD/README.md -------------------------------------------------------------------------------- /babb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsutter/babb/HEAD/babb.h -------------------------------------------------------------------------------- /new_replacements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsutter/babb/HEAD/new_replacements.cpp -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsutter/babb/HEAD/test.cpp -------------------------------------------------------------------------------- /tostudycode/win32_binary_patching_process_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsutter/babb/HEAD/tostudycode/win32_binary_patching_process_loader.c -------------------------------------------------------------------------------- /tostudycode/win32_inplace_process_binary_patcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsutter/babb/HEAD/tostudycode/win32_inplace_process_binary_patcher.c --------------------------------------------------------------------------------