├── .gitignore ├── DllHijack.sln ├── Lib ├── x64 │ ├── Detours.lib │ ├── detours.h │ └── detver.h └── x86 │ ├── detours.h │ ├── detours.lib │ └── detver.h ├── Patch ├── Patch.cpp ├── Patch.vcxproj └── Patch.vcxproj.filters └── version ├── Main.cpp ├── resource.h ├── version.def ├── version.rc ├── version.vcxproj └── version.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/.gitignore -------------------------------------------------------------------------------- /DllHijack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/DllHijack.sln -------------------------------------------------------------------------------- /Lib/x64/Detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/Lib/x64/Detours.lib -------------------------------------------------------------------------------- /Lib/x64/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/Lib/x64/detours.h -------------------------------------------------------------------------------- /Lib/x64/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/Lib/x64/detver.h -------------------------------------------------------------------------------- /Lib/x86/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/Lib/x86/detours.h -------------------------------------------------------------------------------- /Lib/x86/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/Lib/x86/detours.lib -------------------------------------------------------------------------------- /Lib/x86/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/Lib/x86/detver.h -------------------------------------------------------------------------------- /Patch/Patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/Patch/Patch.cpp -------------------------------------------------------------------------------- /Patch/Patch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/Patch/Patch.vcxproj -------------------------------------------------------------------------------- /Patch/Patch.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/Patch/Patch.vcxproj.filters -------------------------------------------------------------------------------- /version/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/version/Main.cpp -------------------------------------------------------------------------------- /version/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/version/resource.h -------------------------------------------------------------------------------- /version/version.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/version/version.def -------------------------------------------------------------------------------- /version/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/version/version.rc -------------------------------------------------------------------------------- /version/version.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/version/version.vcxproj -------------------------------------------------------------------------------- /version/version.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inori/DllHijack/HEAD/version/version.vcxproj.filters --------------------------------------------------------------------------------