├── .gitattributes ├── .gitignore ├── InjectExe.sln ├── InjectExe ├── Hook.cpp ├── Hook.h ├── InjectExe.cpp ├── InjectExe.h ├── InjectExe.vcxproj ├── InjectExe.vcxproj.filters ├── main.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/.gitignore -------------------------------------------------------------------------------- /InjectExe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe.sln -------------------------------------------------------------------------------- /InjectExe/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe/Hook.cpp -------------------------------------------------------------------------------- /InjectExe/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe/Hook.h -------------------------------------------------------------------------------- /InjectExe/InjectExe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe/InjectExe.cpp -------------------------------------------------------------------------------- /InjectExe/InjectExe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe/InjectExe.h -------------------------------------------------------------------------------- /InjectExe/InjectExe.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe/InjectExe.vcxproj -------------------------------------------------------------------------------- /InjectExe/InjectExe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe/InjectExe.vcxproj.filters -------------------------------------------------------------------------------- /InjectExe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe/main.cpp -------------------------------------------------------------------------------- /InjectExe/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe/stdafx.cpp -------------------------------------------------------------------------------- /InjectExe/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe/stdafx.h -------------------------------------------------------------------------------- /InjectExe/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/InjectExe/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/InjectExe/HEAD/README.md --------------------------------------------------------------------------------