├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── MyVerify ├── MyVerify.vcxproj ├── MyVerify.vcxproj.filters ├── dllmain.cpp ├── pch.cpp └── pch.h ├── README.md └── VerifierDLL.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/VerifierDLL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/VerifierDLL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/VerifierDLL/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MyVerify/MyVerify.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/VerifierDLL/HEAD/MyVerify/MyVerify.vcxproj -------------------------------------------------------------------------------- /MyVerify/MyVerify.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/VerifierDLL/HEAD/MyVerify/MyVerify.vcxproj.filters -------------------------------------------------------------------------------- /MyVerify/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/VerifierDLL/HEAD/MyVerify/dllmain.cpp -------------------------------------------------------------------------------- /MyVerify/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/VerifierDLL/HEAD/MyVerify/pch.cpp -------------------------------------------------------------------------------- /MyVerify/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/VerifierDLL/HEAD/MyVerify/pch.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/VerifierDLL/HEAD/README.md -------------------------------------------------------------------------------- /VerifierDLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/VerifierDLL/HEAD/VerifierDLL.sln --------------------------------------------------------------------------------