├── .gitignore ├── LICENSE ├── README.md ├── src ├── dllmain.cpp ├── version.cpp ├── version.def └── version.h ├── version-proxy.sln ├── version-proxy.vcxproj └── version-proxy.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitCrackers/version-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitCrackers/version-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitCrackers/version-proxy/HEAD/README.md -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitCrackers/version-proxy/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitCrackers/version-proxy/HEAD/src/version.cpp -------------------------------------------------------------------------------- /src/version.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitCrackers/version-proxy/HEAD/src/version.def -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitCrackers/version-proxy/HEAD/src/version.h -------------------------------------------------------------------------------- /version-proxy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitCrackers/version-proxy/HEAD/version-proxy.sln -------------------------------------------------------------------------------- /version-proxy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitCrackers/version-proxy/HEAD/version-proxy.vcxproj -------------------------------------------------------------------------------- /version-proxy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitCrackers/version-proxy/HEAD/version-proxy.vcxproj.filters --------------------------------------------------------------------------------