├── .gitignore ├── DSOUND.def ├── HitmanUnlocker.sln ├── HitmanUnlocker.vcxproj ├── HitmanUnlocker.vcxproj.filters ├── LICENSE ├── README.md ├── Src ├── Entry.cpp ├── HitmanUnlocker.cpp ├── HitmanUnlocker.h ├── detours.h ├── stdafx.h └── targetver.h └── detours.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/.gitignore -------------------------------------------------------------------------------- /DSOUND.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/DSOUND.def -------------------------------------------------------------------------------- /HitmanUnlocker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/HitmanUnlocker.sln -------------------------------------------------------------------------------- /HitmanUnlocker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/HitmanUnlocker.vcxproj -------------------------------------------------------------------------------- /HitmanUnlocker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/HitmanUnlocker.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/README.md -------------------------------------------------------------------------------- /Src/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/Src/Entry.cpp -------------------------------------------------------------------------------- /Src/HitmanUnlocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/Src/HitmanUnlocker.cpp -------------------------------------------------------------------------------- /Src/HitmanUnlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/Src/HitmanUnlocker.h -------------------------------------------------------------------------------- /Src/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/Src/detours.h -------------------------------------------------------------------------------- /Src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/Src/stdafx.h -------------------------------------------------------------------------------- /Src/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/HitmanUnlocker/HEAD/detours.lib --------------------------------------------------------------------------------