├── .appveyor.yml ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── demo.bin ├── docs └── img │ ├── demo1.png │ └── demo_view.png └── process_overwrite ├── CMakeLists.txt ├── LICENSE ├── main.cpp ├── overwrite.cpp ├── overwrite.h ├── process_manip.cpp └── process_manip.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/README.md -------------------------------------------------------------------------------- /demo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/demo.bin -------------------------------------------------------------------------------- /docs/img/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/docs/img/demo1.png -------------------------------------------------------------------------------- /docs/img/demo_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/docs/img/demo_view.png -------------------------------------------------------------------------------- /process_overwrite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/process_overwrite/CMakeLists.txt -------------------------------------------------------------------------------- /process_overwrite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/process_overwrite/LICENSE -------------------------------------------------------------------------------- /process_overwrite/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/process_overwrite/main.cpp -------------------------------------------------------------------------------- /process_overwrite/overwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/process_overwrite/overwrite.cpp -------------------------------------------------------------------------------- /process_overwrite/overwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/process_overwrite/overwrite.h -------------------------------------------------------------------------------- /process_overwrite/process_manip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/process_overwrite/process_manip.cpp -------------------------------------------------------------------------------- /process_overwrite/process_manip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/process_overwriting/HEAD/process_overwrite/process_manip.h --------------------------------------------------------------------------------