├── .gitattributes ├── .gitignore ├── README.md ├── ScreenCapture.exe.recipe ├── ScreenCapture.sln ├── ScreenCapture.vcxproj ├── ScreenCapture.vcxproj.filters ├── capture.hpp ├── main.cpp ├── stdafx.cpp └── stdafx.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/README.md -------------------------------------------------------------------------------- /ScreenCapture.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/ScreenCapture.exe.recipe -------------------------------------------------------------------------------- /ScreenCapture.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/ScreenCapture.sln -------------------------------------------------------------------------------- /ScreenCapture.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/ScreenCapture.vcxproj -------------------------------------------------------------------------------- /ScreenCapture.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/ScreenCapture.vcxproj.filters -------------------------------------------------------------------------------- /capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/capture.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/main.cpp -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/ScreenCapture/HEAD/stdafx.h --------------------------------------------------------------------------------