├── .gitignore ├── NtDetours.sln ├── README.md ├── Release └── detour.lib ├── detour ├── LDasm.c ├── LDasm.h ├── TRAMPOLINE.cpp ├── TRAMPOLINE.h ├── detour.cpp ├── detour.h ├── detour.vcxproj ├── detour.vcxproj.filters ├── detour.vcxproj.user ├── stdafx.cpp ├── stdafx.h ├── threads.cpp └── threads.h └── x64 └── Release └── detour.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/.gitignore -------------------------------------------------------------------------------- /NtDetours.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/NtDetours.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/README.md -------------------------------------------------------------------------------- /Release/detour.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/Release/detour.lib -------------------------------------------------------------------------------- /detour/LDasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/LDasm.c -------------------------------------------------------------------------------- /detour/LDasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/LDasm.h -------------------------------------------------------------------------------- /detour/TRAMPOLINE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/TRAMPOLINE.cpp -------------------------------------------------------------------------------- /detour/TRAMPOLINE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/TRAMPOLINE.h -------------------------------------------------------------------------------- /detour/detour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/detour.cpp -------------------------------------------------------------------------------- /detour/detour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/detour.h -------------------------------------------------------------------------------- /detour/detour.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/detour.vcxproj -------------------------------------------------------------------------------- /detour/detour.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/detour.vcxproj.filters -------------------------------------------------------------------------------- /detour/detour.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/detour.vcxproj.user -------------------------------------------------------------------------------- /detour/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/stdafx.cpp -------------------------------------------------------------------------------- /detour/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/stdafx.h -------------------------------------------------------------------------------- /detour/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/threads.cpp -------------------------------------------------------------------------------- /detour/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/detour/threads.h -------------------------------------------------------------------------------- /x64/Release/detour.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/NtDetours/HEAD/x64/Release/detour.lib --------------------------------------------------------------------------------