├── .gitattributes ├── .gitignore ├── ATLCopyHookHandler ├── ATLCopyHookHandler.cpp ├── ATLCopyHookHandler.def ├── ATLCopyHookHandler.idl ├── ATLCopyHookHandler.rc ├── ATLCopyHookHandler.rgs ├── ATLCopyHookHandler.vcxproj ├── ATLCopyHookHandler.vcxproj.filters ├── ATLCopyHookHandler_i.h ├── ATLCopyHookHandlerps.def ├── CopyHookHandler.cpp ├── CopyHookHandler.h ├── CopyHookHandler.rgs ├── dllmain.cpp ├── dllmain.h ├── framework.h ├── pch.cpp ├── pch.h ├── resource.h └── targetver.h ├── ATLDataHandler ├── ATLDataHandler.cpp ├── ATLDataHandler.def ├── ATLDataHandler.idl ├── ATLDataHandler.rc ├── ATLDataHandler.rgs ├── ATLDataHandler.vcxproj ├── ATLDataHandler.vcxproj.filters ├── ATLDataHandler_i.h ├── ATLDataHandlerps.def ├── DataHandler.cpp ├── DataHandler.h ├── DataHandler.rgs ├── dllmain.cpp ├── dllmain.h ├── framework.h ├── pch.cpp ├── pch.h ├── resource.h └── targetver.h ├── ATLDropHandler ├── ATLDropHandler.cpp ├── ATLDropHandler.def ├── ATLDropHandler.idl ├── ATLDropHandler.rc ├── ATLDropHandler.rgs ├── ATLDropHandler.vcxproj ├── ATLDropHandler.vcxproj.filters ├── ATLDropHandler_i.h ├── ATLDropHandlerps.def ├── DropHandler.cpp ├── DropHandler.h ├── DropHandler.rgs ├── dllmain.cpp ├── dllmain.h ├── framework.h ├── pch.cpp ├── pch.h ├── resource.h └── targetver.h ├── ATLIconHandler ├── ATLIconHandler.cpp ├── ATLIconHandler.def ├── ATLIconHandler.idl ├── ATLIconHandler.rc ├── ATLIconHandler.rgs ├── ATLIconHandler.vcxproj ├── ATLIconHandler.vcxproj.filters ├── ATLIconHandler_i.h ├── ATLIconHandlerps.def ├── IconHandler.cpp ├── IconHandler.h ├── IconHandler.rgs ├── dllmain.cpp ├── dllmain.h ├── framework.h ├── pch.cpp ├── pch.h ├── resource.h └── targetver.h ├── ATLIconOverlayHandler ├── ATLIconOverlayHandler.cpp ├── ATLIconOverlayHandler.def ├── ATLIconOverlayHandler.idl ├── ATLIconOverlayHandler.rc ├── ATLIconOverlayHandler.rgs ├── ATLIconOverlayHandler.vcxproj ├── ATLIconOverlayHandler.vcxproj.filters ├── ATLIconOverlayHandler_i.h ├── ATLIconOverlayHandlerps.def ├── IconOverlayHandler.cpp ├── IconOverlayHandler.h ├── IconOverlayHandler.rgs ├── dllmain.cpp ├── dllmain.h ├── framework.h ├── pch.cpp ├── pch.h ├── resource.h └── targetver.h ├── ATLInfotipHandler ├── ATLInfotipHandler.cpp ├── ATLInfotipHandler.def ├── ATLInfotipHandler.idl ├── ATLInfotipHandler.rc ├── ATLInfotipHandler.rgs ├── ATLInfotipHandler.vcxproj ├── ATLInfotipHandler.vcxproj.filters ├── ATLInfotipHandler_i.h ├── ATLInfotipHandlerps.def ├── InfotipHandler.cpp ├── InfotipHandler.h ├── InfotipHandler.rgs ├── dllmain.cpp ├── dllmain.h ├── framework.h ├── pch.cpp ├── pch.h ├── resource.h └── targetver.h ├── ATLPropertySheetHandler ├── ATLPropertySheetHandler.cpp ├── ATLPropertySheetHandler.def ├── ATLPropertySheetHandler.idl ├── ATLPropertySheetHandler.rc ├── ATLPropertySheetHandler.rgs ├── ATLPropertySheetHandler.vcxproj ├── ATLPropertySheetHandler.vcxproj.filters ├── ATLPropertySheetHandler_i.h ├── ATLPropertySheetHandlerps.def ├── PropertySheetHandler.cpp ├── PropertySheetHandler.h ├── PropertySheetHandler.rgs ├── dllmain.cpp ├── dllmain.h ├── framework.h ├── pch.cpp ├── pch.h ├── resource.h └── targetver.h ├── ATLThumbnailImageHandler ├── ATLThumbnailImageHandler.cpp ├── ATLThumbnailImageHandler.def ├── ATLThumbnailImageHandler.idl ├── ATLThumbnailImageHandler.rc ├── ATLThumbnailImageHandler.rgs ├── ATLThumbnailImageHandler.vcxproj ├── ATLThumbnailImageHandler.vcxproj.filters ├── ATLThumbnailImageHandler_i.h ├── ATLThumbnailImageHandlerps.def ├── ThumbnailImageHandler.cpp ├── ThumbnailImageHandler.h ├── ThumbnailImageHandler.rgs ├── dllmain.cpp ├── dllmain.h ├── framework.h ├── pch.cpp ├── pch.h ├── resource.h └── targetver.h ├── Installer ├── Installer.cpp ├── Installer.vcxproj ├── Installer.vcxproj.filters ├── logging.cpp ├── logging.h ├── reg.cpp └── reg.h ├── Test004.sln ├── readme.html └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/.gitignore -------------------------------------------------------------------------------- /ATLCopyHookHandler/ATLCopyHookHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/ATLCopyHookHandler.cpp -------------------------------------------------------------------------------- /ATLCopyHookHandler/ATLCopyHookHandler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/ATLCopyHookHandler.def -------------------------------------------------------------------------------- /ATLCopyHookHandler/ATLCopyHookHandler.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/ATLCopyHookHandler.idl -------------------------------------------------------------------------------- /ATLCopyHookHandler/ATLCopyHookHandler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/ATLCopyHookHandler.rc -------------------------------------------------------------------------------- /ATLCopyHookHandler/ATLCopyHookHandler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /ATLCopyHookHandler/ATLCopyHookHandler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/ATLCopyHookHandler.vcxproj -------------------------------------------------------------------------------- /ATLCopyHookHandler/ATLCopyHookHandler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/ATLCopyHookHandler.vcxproj.filters -------------------------------------------------------------------------------- /ATLCopyHookHandler/ATLCopyHookHandler_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/ATLCopyHookHandler_i.h -------------------------------------------------------------------------------- /ATLCopyHookHandler/ATLCopyHookHandlerps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/ATLCopyHookHandlerps.def -------------------------------------------------------------------------------- /ATLCopyHookHandler/CopyHookHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/CopyHookHandler.cpp -------------------------------------------------------------------------------- /ATLCopyHookHandler/CopyHookHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/CopyHookHandler.h -------------------------------------------------------------------------------- /ATLCopyHookHandler/CopyHookHandler.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/CopyHookHandler.rgs -------------------------------------------------------------------------------- /ATLCopyHookHandler/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/dllmain.cpp -------------------------------------------------------------------------------- /ATLCopyHookHandler/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/dllmain.h -------------------------------------------------------------------------------- /ATLCopyHookHandler/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/framework.h -------------------------------------------------------------------------------- /ATLCopyHookHandler/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/pch.cpp -------------------------------------------------------------------------------- /ATLCopyHookHandler/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/pch.h -------------------------------------------------------------------------------- /ATLCopyHookHandler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/resource.h -------------------------------------------------------------------------------- /ATLCopyHookHandler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLCopyHookHandler/targetver.h -------------------------------------------------------------------------------- /ATLDataHandler/ATLDataHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/ATLDataHandler.cpp -------------------------------------------------------------------------------- /ATLDataHandler/ATLDataHandler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/ATLDataHandler.def -------------------------------------------------------------------------------- /ATLDataHandler/ATLDataHandler.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/ATLDataHandler.idl -------------------------------------------------------------------------------- /ATLDataHandler/ATLDataHandler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/ATLDataHandler.rc -------------------------------------------------------------------------------- /ATLDataHandler/ATLDataHandler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /ATLDataHandler/ATLDataHandler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/ATLDataHandler.vcxproj -------------------------------------------------------------------------------- /ATLDataHandler/ATLDataHandler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/ATLDataHandler.vcxproj.filters -------------------------------------------------------------------------------- /ATLDataHandler/ATLDataHandler_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/ATLDataHandler_i.h -------------------------------------------------------------------------------- /ATLDataHandler/ATLDataHandlerps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/ATLDataHandlerps.def -------------------------------------------------------------------------------- /ATLDataHandler/DataHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/DataHandler.cpp -------------------------------------------------------------------------------- /ATLDataHandler/DataHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/DataHandler.h -------------------------------------------------------------------------------- /ATLDataHandler/DataHandler.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/DataHandler.rgs -------------------------------------------------------------------------------- /ATLDataHandler/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/dllmain.cpp -------------------------------------------------------------------------------- /ATLDataHandler/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/dllmain.h -------------------------------------------------------------------------------- /ATLDataHandler/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/framework.h -------------------------------------------------------------------------------- /ATLDataHandler/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/pch.cpp -------------------------------------------------------------------------------- /ATLDataHandler/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/pch.h -------------------------------------------------------------------------------- /ATLDataHandler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/resource.h -------------------------------------------------------------------------------- /ATLDataHandler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDataHandler/targetver.h -------------------------------------------------------------------------------- /ATLDropHandler/ATLDropHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/ATLDropHandler.cpp -------------------------------------------------------------------------------- /ATLDropHandler/ATLDropHandler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/ATLDropHandler.def -------------------------------------------------------------------------------- /ATLDropHandler/ATLDropHandler.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/ATLDropHandler.idl -------------------------------------------------------------------------------- /ATLDropHandler/ATLDropHandler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/ATLDropHandler.rc -------------------------------------------------------------------------------- /ATLDropHandler/ATLDropHandler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /ATLDropHandler/ATLDropHandler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/ATLDropHandler.vcxproj -------------------------------------------------------------------------------- /ATLDropHandler/ATLDropHandler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/ATLDropHandler.vcxproj.filters -------------------------------------------------------------------------------- /ATLDropHandler/ATLDropHandler_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/ATLDropHandler_i.h -------------------------------------------------------------------------------- /ATLDropHandler/ATLDropHandlerps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/ATLDropHandlerps.def -------------------------------------------------------------------------------- /ATLDropHandler/DropHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/DropHandler.cpp -------------------------------------------------------------------------------- /ATLDropHandler/DropHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/DropHandler.h -------------------------------------------------------------------------------- /ATLDropHandler/DropHandler.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/DropHandler.rgs -------------------------------------------------------------------------------- /ATLDropHandler/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/dllmain.cpp -------------------------------------------------------------------------------- /ATLDropHandler/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/dllmain.h -------------------------------------------------------------------------------- /ATLDropHandler/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/framework.h -------------------------------------------------------------------------------- /ATLDropHandler/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/pch.cpp -------------------------------------------------------------------------------- /ATLDropHandler/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/pch.h -------------------------------------------------------------------------------- /ATLDropHandler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/resource.h -------------------------------------------------------------------------------- /ATLDropHandler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLDropHandler/targetver.h -------------------------------------------------------------------------------- /ATLIconHandler/ATLIconHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/ATLIconHandler.cpp -------------------------------------------------------------------------------- /ATLIconHandler/ATLIconHandler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/ATLIconHandler.def -------------------------------------------------------------------------------- /ATLIconHandler/ATLIconHandler.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/ATLIconHandler.idl -------------------------------------------------------------------------------- /ATLIconHandler/ATLIconHandler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/ATLIconHandler.rc -------------------------------------------------------------------------------- /ATLIconHandler/ATLIconHandler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /ATLIconHandler/ATLIconHandler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/ATLIconHandler.vcxproj -------------------------------------------------------------------------------- /ATLIconHandler/ATLIconHandler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/ATLIconHandler.vcxproj.filters -------------------------------------------------------------------------------- /ATLIconHandler/ATLIconHandler_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/ATLIconHandler_i.h -------------------------------------------------------------------------------- /ATLIconHandler/ATLIconHandlerps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/ATLIconHandlerps.def -------------------------------------------------------------------------------- /ATLIconHandler/IconHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/IconHandler.cpp -------------------------------------------------------------------------------- /ATLIconHandler/IconHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/IconHandler.h -------------------------------------------------------------------------------- /ATLIconHandler/IconHandler.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/IconHandler.rgs -------------------------------------------------------------------------------- /ATLIconHandler/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/dllmain.cpp -------------------------------------------------------------------------------- /ATLIconHandler/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/dllmain.h -------------------------------------------------------------------------------- /ATLIconHandler/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/framework.h -------------------------------------------------------------------------------- /ATLIconHandler/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/pch.cpp -------------------------------------------------------------------------------- /ATLIconHandler/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/pch.h -------------------------------------------------------------------------------- /ATLIconHandler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/resource.h -------------------------------------------------------------------------------- /ATLIconHandler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconHandler/targetver.h -------------------------------------------------------------------------------- /ATLIconOverlayHandler/ATLIconOverlayHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/ATLIconOverlayHandler.cpp -------------------------------------------------------------------------------- /ATLIconOverlayHandler/ATLIconOverlayHandler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/ATLIconOverlayHandler.def -------------------------------------------------------------------------------- /ATLIconOverlayHandler/ATLIconOverlayHandler.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/ATLIconOverlayHandler.idl -------------------------------------------------------------------------------- /ATLIconOverlayHandler/ATLIconOverlayHandler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/ATLIconOverlayHandler.rc -------------------------------------------------------------------------------- /ATLIconOverlayHandler/ATLIconOverlayHandler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /ATLIconOverlayHandler/ATLIconOverlayHandler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/ATLIconOverlayHandler.vcxproj -------------------------------------------------------------------------------- /ATLIconOverlayHandler/ATLIconOverlayHandler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/ATLIconOverlayHandler.vcxproj.filters -------------------------------------------------------------------------------- /ATLIconOverlayHandler/ATLIconOverlayHandler_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/ATLIconOverlayHandler_i.h -------------------------------------------------------------------------------- /ATLIconOverlayHandler/ATLIconOverlayHandlerps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/ATLIconOverlayHandlerps.def -------------------------------------------------------------------------------- /ATLIconOverlayHandler/IconOverlayHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/IconOverlayHandler.cpp -------------------------------------------------------------------------------- /ATLIconOverlayHandler/IconOverlayHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/IconOverlayHandler.h -------------------------------------------------------------------------------- /ATLIconOverlayHandler/IconOverlayHandler.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/IconOverlayHandler.rgs -------------------------------------------------------------------------------- /ATLIconOverlayHandler/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/dllmain.cpp -------------------------------------------------------------------------------- /ATLIconOverlayHandler/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/dllmain.h -------------------------------------------------------------------------------- /ATLIconOverlayHandler/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/framework.h -------------------------------------------------------------------------------- /ATLIconOverlayHandler/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/pch.cpp -------------------------------------------------------------------------------- /ATLIconOverlayHandler/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/pch.h -------------------------------------------------------------------------------- /ATLIconOverlayHandler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/resource.h -------------------------------------------------------------------------------- /ATLIconOverlayHandler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLIconOverlayHandler/targetver.h -------------------------------------------------------------------------------- /ATLInfotipHandler/ATLInfotipHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/ATLInfotipHandler.cpp -------------------------------------------------------------------------------- /ATLInfotipHandler/ATLInfotipHandler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/ATLInfotipHandler.def -------------------------------------------------------------------------------- /ATLInfotipHandler/ATLInfotipHandler.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/ATLInfotipHandler.idl -------------------------------------------------------------------------------- /ATLInfotipHandler/ATLInfotipHandler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/ATLInfotipHandler.rc -------------------------------------------------------------------------------- /ATLInfotipHandler/ATLInfotipHandler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /ATLInfotipHandler/ATLInfotipHandler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/ATLInfotipHandler.vcxproj -------------------------------------------------------------------------------- /ATLInfotipHandler/ATLInfotipHandler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/ATLInfotipHandler.vcxproj.filters -------------------------------------------------------------------------------- /ATLInfotipHandler/ATLInfotipHandler_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/ATLInfotipHandler_i.h -------------------------------------------------------------------------------- /ATLInfotipHandler/ATLInfotipHandlerps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/ATLInfotipHandlerps.def -------------------------------------------------------------------------------- /ATLInfotipHandler/InfotipHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/InfotipHandler.cpp -------------------------------------------------------------------------------- /ATLInfotipHandler/InfotipHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/InfotipHandler.h -------------------------------------------------------------------------------- /ATLInfotipHandler/InfotipHandler.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/InfotipHandler.rgs -------------------------------------------------------------------------------- /ATLInfotipHandler/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/dllmain.cpp -------------------------------------------------------------------------------- /ATLInfotipHandler/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/dllmain.h -------------------------------------------------------------------------------- /ATLInfotipHandler/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/framework.h -------------------------------------------------------------------------------- /ATLInfotipHandler/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/pch.cpp -------------------------------------------------------------------------------- /ATLInfotipHandler/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/pch.h -------------------------------------------------------------------------------- /ATLInfotipHandler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/resource.h -------------------------------------------------------------------------------- /ATLInfotipHandler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLInfotipHandler/targetver.h -------------------------------------------------------------------------------- /ATLPropertySheetHandler/ATLPropertySheetHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/ATLPropertySheetHandler.cpp -------------------------------------------------------------------------------- /ATLPropertySheetHandler/ATLPropertySheetHandler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/ATLPropertySheetHandler.def -------------------------------------------------------------------------------- /ATLPropertySheetHandler/ATLPropertySheetHandler.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/ATLPropertySheetHandler.idl -------------------------------------------------------------------------------- /ATLPropertySheetHandler/ATLPropertySheetHandler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/ATLPropertySheetHandler.rc -------------------------------------------------------------------------------- /ATLPropertySheetHandler/ATLPropertySheetHandler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /ATLPropertySheetHandler/ATLPropertySheetHandler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/ATLPropertySheetHandler.vcxproj -------------------------------------------------------------------------------- /ATLPropertySheetHandler/ATLPropertySheetHandler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/ATLPropertySheetHandler.vcxproj.filters -------------------------------------------------------------------------------- /ATLPropertySheetHandler/ATLPropertySheetHandler_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/ATLPropertySheetHandler_i.h -------------------------------------------------------------------------------- /ATLPropertySheetHandler/ATLPropertySheetHandlerps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/ATLPropertySheetHandlerps.def -------------------------------------------------------------------------------- /ATLPropertySheetHandler/PropertySheetHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/PropertySheetHandler.cpp -------------------------------------------------------------------------------- /ATLPropertySheetHandler/PropertySheetHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/PropertySheetHandler.h -------------------------------------------------------------------------------- /ATLPropertySheetHandler/PropertySheetHandler.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/PropertySheetHandler.rgs -------------------------------------------------------------------------------- /ATLPropertySheetHandler/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/dllmain.cpp -------------------------------------------------------------------------------- /ATLPropertySheetHandler/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/dllmain.h -------------------------------------------------------------------------------- /ATLPropertySheetHandler/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/framework.h -------------------------------------------------------------------------------- /ATLPropertySheetHandler/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/pch.cpp -------------------------------------------------------------------------------- /ATLPropertySheetHandler/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/pch.h -------------------------------------------------------------------------------- /ATLPropertySheetHandler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/resource.h -------------------------------------------------------------------------------- /ATLPropertySheetHandler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLPropertySheetHandler/targetver.h -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ATLThumbnailImageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ATLThumbnailImageHandler.cpp -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ATLThumbnailImageHandler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ATLThumbnailImageHandler.def -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ATLThumbnailImageHandler.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ATLThumbnailImageHandler.idl -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ATLThumbnailImageHandler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ATLThumbnailImageHandler.rc -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ATLThumbnailImageHandler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ATLThumbnailImageHandler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ATLThumbnailImageHandler.vcxproj -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ATLThumbnailImageHandler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ATLThumbnailImageHandler.vcxproj.filters -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ATLThumbnailImageHandler_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ATLThumbnailImageHandler_i.h -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ATLThumbnailImageHandlerps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ATLThumbnailImageHandlerps.def -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ThumbnailImageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ThumbnailImageHandler.cpp -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ThumbnailImageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ThumbnailImageHandler.h -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/ThumbnailImageHandler.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/ThumbnailImageHandler.rgs -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/dllmain.cpp -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/dllmain.h -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/framework.h -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/pch.cpp -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/pch.h -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/resource.h -------------------------------------------------------------------------------- /ATLThumbnailImageHandler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/ATLThumbnailImageHandler/targetver.h -------------------------------------------------------------------------------- /Installer/Installer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/Installer/Installer.cpp -------------------------------------------------------------------------------- /Installer/Installer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/Installer/Installer.vcxproj -------------------------------------------------------------------------------- /Installer/Installer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/Installer/Installer.vcxproj.filters -------------------------------------------------------------------------------- /Installer/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/Installer/logging.cpp -------------------------------------------------------------------------------- /Installer/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/Installer/logging.h -------------------------------------------------------------------------------- /Installer/reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/Installer/reg.cpp -------------------------------------------------------------------------------- /Installer/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/Installer/reg.h -------------------------------------------------------------------------------- /Test004.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/Test004.sln -------------------------------------------------------------------------------- /readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/readme.html -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahmad097/Test004/HEAD/readme.md --------------------------------------------------------------------------------