├── .gitignore ├── .gitmodules ├── hde ├── hde32.txt ├── hde64.txt ├── include │ └── hde │ │ ├── hde32.h │ │ ├── hde64.h │ │ ├── table32.h │ │ └── table64.h └── src │ ├── hde.c │ ├── hde32.c │ └── hde64.c ├── include └── detouring │ ├── classproxy.hpp │ ├── detours.h │ ├── hde.h │ ├── helpers.hpp │ ├── hook.hpp │ ├── platform.hpp │ └── vfnhook.h ├── license.txt ├── premake5.lua ├── premake5_create_project.lua ├── readme.md └── source ├── helpers.cpp └── hook.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | /projects/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/.gitmodules -------------------------------------------------------------------------------- /hde/hde32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/hde/hde32.txt -------------------------------------------------------------------------------- /hde/hde64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/hde/hde64.txt -------------------------------------------------------------------------------- /hde/include/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/hde/include/hde/hde32.h -------------------------------------------------------------------------------- /hde/include/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/hde/include/hde/hde64.h -------------------------------------------------------------------------------- /hde/include/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/hde/include/hde/table32.h -------------------------------------------------------------------------------- /hde/include/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/hde/include/hde/table64.h -------------------------------------------------------------------------------- /hde/src/hde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/hde/src/hde.c -------------------------------------------------------------------------------- /hde/src/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/hde/src/hde32.c -------------------------------------------------------------------------------- /hde/src/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/hde/src/hde64.c -------------------------------------------------------------------------------- /include/detouring/classproxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/include/detouring/classproxy.hpp -------------------------------------------------------------------------------- /include/detouring/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/include/detouring/detours.h -------------------------------------------------------------------------------- /include/detouring/hde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/include/detouring/hde.h -------------------------------------------------------------------------------- /include/detouring/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/include/detouring/helpers.hpp -------------------------------------------------------------------------------- /include/detouring/hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/include/detouring/hook.hpp -------------------------------------------------------------------------------- /include/detouring/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/include/detouring/platform.hpp -------------------------------------------------------------------------------- /include/detouring/vfnhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/include/detouring/vfnhook.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/license.txt -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/premake5.lua -------------------------------------------------------------------------------- /premake5_create_project.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/premake5_create_project.lua -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/readme.md -------------------------------------------------------------------------------- /source/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/source/helpers.cpp -------------------------------------------------------------------------------- /source/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielga/detouring/HEAD/source/hook.cpp --------------------------------------------------------------------------------