├── .gitattributes ├── .gitignore ├── Build └── x64 │ ├── Debug │ └── stop.bat │ └── Release │ ├── ClippedTB.x64.rar │ └── stop.bat ├── ClippedTB.sln ├── ClippedTB ├── ClippedTB.aps ├── ClippedTB.cpp ├── ClippedTB.h ├── ClippedTB.rc ├── ClippedTB.vcxproj ├── ClippedTB.vcxproj.filters ├── ClippedTB.vcxproj.user ├── DwmThumbnailAPI.hpp ├── EffectHelper.hpp ├── crt.h ├── dx.h ├── framework.h ├── icon1.ico ├── packages.config ├── pch.cpp ├── pch.h ├── resource.h ├── targetver.h └── wil.h ├── Images ├── banner.png └── screenshot.png ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/.gitignore -------------------------------------------------------------------------------- /Build/x64/Debug/stop.bat: -------------------------------------------------------------------------------- 1 | ClippedTB64 /stop -------------------------------------------------------------------------------- /Build/x64/Release/ClippedTB.x64.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/Build/x64/Release/ClippedTB.x64.rar -------------------------------------------------------------------------------- /Build/x64/Release/stop.bat: -------------------------------------------------------------------------------- 1 | ClippedTB64 /stop -------------------------------------------------------------------------------- /ClippedTB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB.sln -------------------------------------------------------------------------------- /ClippedTB/ClippedTB.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/ClippedTB.aps -------------------------------------------------------------------------------- /ClippedTB/ClippedTB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/ClippedTB.cpp -------------------------------------------------------------------------------- /ClippedTB/ClippedTB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/ClippedTB.h -------------------------------------------------------------------------------- /ClippedTB/ClippedTB.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/ClippedTB.rc -------------------------------------------------------------------------------- /ClippedTB/ClippedTB.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/ClippedTB.vcxproj -------------------------------------------------------------------------------- /ClippedTB/ClippedTB.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/ClippedTB.vcxproj.filters -------------------------------------------------------------------------------- /ClippedTB/ClippedTB.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/ClippedTB.vcxproj.user -------------------------------------------------------------------------------- /ClippedTB/DwmThumbnailAPI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/DwmThumbnailAPI.hpp -------------------------------------------------------------------------------- /ClippedTB/EffectHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/EffectHelper.hpp -------------------------------------------------------------------------------- /ClippedTB/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/crt.h -------------------------------------------------------------------------------- /ClippedTB/dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/dx.h -------------------------------------------------------------------------------- /ClippedTB/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/framework.h -------------------------------------------------------------------------------- /ClippedTB/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/icon1.ico -------------------------------------------------------------------------------- /ClippedTB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/packages.config -------------------------------------------------------------------------------- /ClippedTB/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/pch.cpp -------------------------------------------------------------------------------- /ClippedTB/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/pch.h -------------------------------------------------------------------------------- /ClippedTB/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/resource.h -------------------------------------------------------------------------------- /ClippedTB/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/targetver.h -------------------------------------------------------------------------------- /ClippedTB/wil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/ClippedTB/wil.h -------------------------------------------------------------------------------- /Images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/Images/banner.png -------------------------------------------------------------------------------- /Images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/Images/screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALTaleX531/ClippedTB/HEAD/README.md --------------------------------------------------------------------------------