├── .DS_Store ├── Changelog.txt ├── LICENSE ├── README ├── backup.cpp ├── backup.hpp ├── clist.cpp ├── clist.hpp ├── diff.cpp ├── diff.hpp ├── display.cpp ├── display.hpp ├── hash.cpp ├── hash.hpp ├── makefile ├── options.cpp ├── options.hpp ├── os.hpp ├── parser.cpp ├── parser.hpp ├── patchdiff.cpp ├── patchdiff.hpp ├── patchdiff2.sln ├── patchdiff2.vcproj ├── pchart.cpp ├── pchart.hpp ├── pgraph.cpp ├── pgraph.hpp ├── ppc.cpp ├── ppc.hpp ├── sig ├── sig.cpp ├── sig.hpp ├── system.cpp ├── system.hpp ├── unix_fct.cpp ├── unix_fct.hpp ├── win_fct.cpp ├── win_fct.hpp ├── x86.cpp └── x86.hpp /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/.DS_Store -------------------------------------------------------------------------------- /Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/Changelog.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/README -------------------------------------------------------------------------------- /backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/backup.cpp -------------------------------------------------------------------------------- /backup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/backup.hpp -------------------------------------------------------------------------------- /clist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/clist.cpp -------------------------------------------------------------------------------- /clist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/clist.hpp -------------------------------------------------------------------------------- /diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/diff.cpp -------------------------------------------------------------------------------- /diff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/diff.hpp -------------------------------------------------------------------------------- /display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/display.cpp -------------------------------------------------------------------------------- /display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/display.hpp -------------------------------------------------------------------------------- /hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/hash.cpp -------------------------------------------------------------------------------- /hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/hash.hpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/makefile -------------------------------------------------------------------------------- /options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/options.cpp -------------------------------------------------------------------------------- /options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/options.hpp -------------------------------------------------------------------------------- /os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/os.hpp -------------------------------------------------------------------------------- /parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/parser.cpp -------------------------------------------------------------------------------- /parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/parser.hpp -------------------------------------------------------------------------------- /patchdiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/patchdiff.cpp -------------------------------------------------------------------------------- /patchdiff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/patchdiff.hpp -------------------------------------------------------------------------------- /patchdiff2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/patchdiff2.sln -------------------------------------------------------------------------------- /patchdiff2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/patchdiff2.vcproj -------------------------------------------------------------------------------- /pchart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/pchart.cpp -------------------------------------------------------------------------------- /pchart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/pchart.hpp -------------------------------------------------------------------------------- /pgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/pgraph.cpp -------------------------------------------------------------------------------- /pgraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/pgraph.hpp -------------------------------------------------------------------------------- /ppc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/ppc.cpp -------------------------------------------------------------------------------- /ppc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/ppc.hpp -------------------------------------------------------------------------------- /sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/sig -------------------------------------------------------------------------------- /sig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/sig.cpp -------------------------------------------------------------------------------- /sig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/sig.hpp -------------------------------------------------------------------------------- /system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/system.cpp -------------------------------------------------------------------------------- /system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/system.hpp -------------------------------------------------------------------------------- /unix_fct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/unix_fct.cpp -------------------------------------------------------------------------------- /unix_fct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/unix_fct.hpp -------------------------------------------------------------------------------- /win_fct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/win_fct.cpp -------------------------------------------------------------------------------- /win_fct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/win_fct.hpp -------------------------------------------------------------------------------- /x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/x86.cpp -------------------------------------------------------------------------------- /x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-pick/patchdiff2_ida6/HEAD/x86.hpp --------------------------------------------------------------------------------