├── .gitignore ├── BinFind.cpp ├── BinFind.h ├── LICENSE ├── Makefile ├── Readme.md ├── Screenshot.png └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.vcxproj* 2 | [Dd]ebug 3 | [Rr]elease 4 | /test 5 | *.dSYM 6 | -------------------------------------------------------------------------------- /BinFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/BinFind/HEAD/BinFind.cpp -------------------------------------------------------------------------------- /BinFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/BinFind/HEAD/BinFind.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/BinFind/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/BinFind/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/BinFind/HEAD/Readme.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/BinFind/HEAD/Screenshot.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/BinFind/HEAD/main.cpp --------------------------------------------------------------------------------