├── LeiGodAutoTimer.sln ├── LeiGodAutoTimer ├── Hooks │ ├── Hooks.cpp │ ├── Hooks.h │ └── minhook │ │ ├── include │ │ └── MinHook.h │ │ └── src │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── hde │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ │ ├── hook.c │ │ ├── trampoline.c │ │ └── trampoline.h ├── LeiGodAutoTimer.vcxproj ├── LeiGodAutoTimer.vcxproj.filters ├── LeiGodAutoTimer.vcxproj.user ├── VersionHijack.h └── dllmain.cpp └── README.md /LeiGodAutoTimer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer.sln -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/Hooks.cpp -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/Hooks.h -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/include/MinHook.h -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/buffer.c -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/buffer.h -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/hde/hde32.c -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/hde/hde32.h -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/hde/hde64.c -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/hde/hde64.h -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/hde/pstdint.h -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/hde/table32.h -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/hde/table64.h -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/hook.c -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/trampoline.c -------------------------------------------------------------------------------- /LeiGodAutoTimer/Hooks/minhook/src/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/Hooks/minhook/src/trampoline.h -------------------------------------------------------------------------------- /LeiGodAutoTimer/LeiGodAutoTimer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/LeiGodAutoTimer.vcxproj -------------------------------------------------------------------------------- /LeiGodAutoTimer/LeiGodAutoTimer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/LeiGodAutoTimer.vcxproj.filters -------------------------------------------------------------------------------- /LeiGodAutoTimer/LeiGodAutoTimer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/LeiGodAutoTimer.vcxproj.user -------------------------------------------------------------------------------- /LeiGodAutoTimer/VersionHijack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/VersionHijack.h -------------------------------------------------------------------------------- /LeiGodAutoTimer/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/LeiGodAutoTimer/dllmain.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeacks/LeiGodAutoTimer/HEAD/README.md --------------------------------------------------------------------------------