├── CheckSDL ├── CheckSDL.sln ├── CheckSDL │ ├── BannedFunctions.h │ ├── CheckSDL.cpp │ ├── CheckSDL.vcxproj │ ├── CheckSDL.vcxproj.filters │ ├── CollectFileStatuses.cpp │ ├── CollectFileStatuses.h │ ├── DataCollectionDisplayer.cpp │ ├── DataCollectionDisplayer.h │ ├── FileStatus.h │ ├── ImportStatus.cpp │ ├── ImportStatus.h │ ├── N3949 │ │ ├── scope_guard.h │ │ └── unique_resource.h │ ├── PEConfig.cpp │ ├── PEConfig.h │ ├── SDLStatus.cpp │ ├── SDLStatus.h │ ├── banned.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── Release │ └── CheckSDL.exe ├── LICENSE ├── README.md └── img └── chart.png /CheckSDL/CheckSDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL.sln -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/BannedFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/BannedFunctions.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/CheckSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/CheckSDL.cpp -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/CheckSDL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/CheckSDL.vcxproj -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/CheckSDL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/CheckSDL.vcxproj.filters -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/CollectFileStatuses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/CollectFileStatuses.cpp -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/CollectFileStatuses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/CollectFileStatuses.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/DataCollectionDisplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/DataCollectionDisplayer.cpp -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/DataCollectionDisplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/DataCollectionDisplayer.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/FileStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/FileStatus.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/ImportStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/ImportStatus.cpp -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/ImportStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/ImportStatus.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/N3949/scope_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/N3949/scope_guard.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/N3949/unique_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/N3949/unique_resource.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/PEConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/PEConfig.cpp -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/PEConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/PEConfig.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/SDLStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/SDLStatus.cpp -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/SDLStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/SDLStatus.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/banned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/banned.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/stdafx.cpp -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/stdafx.h -------------------------------------------------------------------------------- /CheckSDL/CheckSDL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/CheckSDL/targetver.h -------------------------------------------------------------------------------- /CheckSDL/Release/CheckSDL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/CheckSDL/Release/CheckSDL.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/README.md -------------------------------------------------------------------------------- /img/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/CheckSDL/HEAD/img/chart.png --------------------------------------------------------------------------------