├── .clang-format ├── .gitignore ├── LICENSE ├── Resource.h ├── WinDesktopDup.cpp ├── WinDesktopDup.h ├── readme.md ├── small.ico ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── tsf.cpp ├── tsf.h ├── windup.cpp ├── windup.h ├── windup.ico ├── windup.rc ├── windup.sln ├── windup.vcxproj └── windup.vcxproj.filters /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.vs 2 | Debug 3 | Release 4 | z64 5 | *.vcxproj.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/LICENSE -------------------------------------------------------------------------------- /Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/Resource.h -------------------------------------------------------------------------------- /WinDesktopDup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/WinDesktopDup.cpp -------------------------------------------------------------------------------- /WinDesktopDup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/WinDesktopDup.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/readme.md -------------------------------------------------------------------------------- /small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/small.ico -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/targetver.h -------------------------------------------------------------------------------- /tsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/tsf.cpp -------------------------------------------------------------------------------- /tsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/tsf.h -------------------------------------------------------------------------------- /windup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/windup.cpp -------------------------------------------------------------------------------- /windup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/windup.h -------------------------------------------------------------------------------- /windup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/windup.ico -------------------------------------------------------------------------------- /windup.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/windup.rc -------------------------------------------------------------------------------- /windup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/windup.sln -------------------------------------------------------------------------------- /windup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/windup.vcxproj -------------------------------------------------------------------------------- /windup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmharper/WindowsDesktopDuplicationSample/HEAD/windup.vcxproj.filters --------------------------------------------------------------------------------