├── Define.h ├── EtwHook.cpp ├── EtwHook.h ├── HookSwapContext.cpp ├── HookSwapContext.h ├── README.md ├── global.cpp ├── global.h ├── util.cpp └── util.h /Define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/HookSwapContext/HEAD/Define.h -------------------------------------------------------------------------------- /EtwHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/HookSwapContext/HEAD/EtwHook.cpp -------------------------------------------------------------------------------- /EtwHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/HookSwapContext/HEAD/EtwHook.h -------------------------------------------------------------------------------- /HookSwapContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/HookSwapContext/HEAD/HookSwapContext.cpp -------------------------------------------------------------------------------- /HookSwapContext.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void HookSwapContext(); 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HookSwapContext 2 | 3 | 2小时写出来的代码,win10 测试通过 4 | -------------------------------------------------------------------------------- /global.cpp: -------------------------------------------------------------------------------- 1 | #include "global.h" 2 | 3 | -------------------------------------------------------------------------------- /global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/HookSwapContext/HEAD/global.h -------------------------------------------------------------------------------- /util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/HookSwapContext/HEAD/util.cpp -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/HookSwapContext/HEAD/util.h --------------------------------------------------------------------------------