├── .gitignore ├── asm_code32 └── asm_code.asm ├── asm_code64 └── asm_code.asm ├── cmake.bat ├── cmakelists.txt ├── defs.h ├── ldrdebug.c ├── main.c ├── manifest.manifest ├── readme.md ├── redirecteddll.c ├── sxsoaps.c └── sxstypes.h /.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /asm_code32/asm_code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/asm_code32/asm_code.asm -------------------------------------------------------------------------------- /asm_code64/asm_code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/asm_code64/asm_code.asm -------------------------------------------------------------------------------- /cmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/cmake.bat -------------------------------------------------------------------------------- /cmakelists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/cmakelists.txt -------------------------------------------------------------------------------- /defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/defs.h -------------------------------------------------------------------------------- /ldrdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/ldrdebug.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/main.c -------------------------------------------------------------------------------- /manifest.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/manifest.manifest -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/readme.md -------------------------------------------------------------------------------- /redirecteddll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/redirecteddll.c -------------------------------------------------------------------------------- /sxsoaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/sxsoaps.c -------------------------------------------------------------------------------- /sxstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroko/activationcontexthook/HEAD/sxstypes.h --------------------------------------------------------------------------------