├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── VCRuntimeDetector.sln └── VCRuntimeDetector ├── VCDetector.cpp ├── VCDetector.h ├── VCRuntimeDetector.cpp ├── VCRuntimeDetector.vcxproj ├── VCRuntimeDetector.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/README.md -------------------------------------------------------------------------------- /VCRuntimeDetector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/VCRuntimeDetector.sln -------------------------------------------------------------------------------- /VCRuntimeDetector/VCDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/VCRuntimeDetector/VCDetector.cpp -------------------------------------------------------------------------------- /VCRuntimeDetector/VCDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/VCRuntimeDetector/VCDetector.h -------------------------------------------------------------------------------- /VCRuntimeDetector/VCRuntimeDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/VCRuntimeDetector/VCRuntimeDetector.cpp -------------------------------------------------------------------------------- /VCRuntimeDetector/VCRuntimeDetector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/VCRuntimeDetector/VCRuntimeDetector.vcxproj -------------------------------------------------------------------------------- /VCRuntimeDetector/VCRuntimeDetector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/VCRuntimeDetector/VCRuntimeDetector.vcxproj.filters -------------------------------------------------------------------------------- /VCRuntimeDetector/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/VCRuntimeDetector/stdafx.cpp -------------------------------------------------------------------------------- /VCRuntimeDetector/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/VCRuntimeDetector/stdafx.h -------------------------------------------------------------------------------- /VCRuntimeDetector/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markedup-mobi/crt-detector/HEAD/VCRuntimeDetector/targetver.h --------------------------------------------------------------------------------