├── .editorconfig ├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── LICENCE.TXT ├── README.md ├── WinSpy.sln └── src ├── BitmapButton.c ├── BitmapButton.h ├── CaptureWindow.c ├── CaptureWindow.h ├── DisplayClassInfo.c ├── DisplayDpiInfo.c ├── DisplayGeneralInfo.c ├── DisplayProcessInfo.c ├── DisplayPropInfo.c ├── DisplayScrollInfo.c ├── DisplayStyleInfo.c ├── DisplayWindowInfo.c ├── EditSize.c ├── FindTool.c ├── FindTool.h ├── FindToolTrans.c ├── FlashWindow.cpp ├── FunkyList.c ├── GetRemoteWindowInfo.c ├── History.txt ├── InjectThread.c ├── InjectThread.h ├── LoadPNG.cpp ├── Options.c ├── Poster.c ├── Poster.h ├── PropertyEdit.c ├── Readme.txt ├── RegHelper.c ├── RegHelper.h ├── StaticCtrl.c ├── StyleEdit.c ├── TabCtrlUtils.c ├── Utils.c ├── Utils.h ├── WinSpy.c ├── WinSpy.h ├── WinSpyCommand.c ├── WinSpyDlgs.c ├── WinSpyTree.c ├── WinSpyWindow.c ├── WindowFromPointEx.c ├── WindowFromPointEx.h ├── resource ├── WinSpy.rc ├── app.ico ├── check1.bmp ├── check2.bmp ├── cursor1.cur ├── dots.ico ├── down.ico ├── dragtool1.bmp ├── dragtool2.bmp ├── enter.ico ├── less.ico ├── more.ico ├── resource.h ├── selbox.png ├── selbox.psd ├── selbox2.png ├── thumbtack.bmp ├── treeicons-cloaked.bmp ├── treeicons-hidden.bmp ├── treeicons.bmp └── winspy.exe.manifest ├── winspy.vcxproj └── winspy.vcxproj.filters /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/LICENCE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/README.md -------------------------------------------------------------------------------- /WinSpy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/WinSpy.sln -------------------------------------------------------------------------------- /src/BitmapButton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/BitmapButton.c -------------------------------------------------------------------------------- /src/BitmapButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/BitmapButton.h -------------------------------------------------------------------------------- /src/CaptureWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/CaptureWindow.c -------------------------------------------------------------------------------- /src/CaptureWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/CaptureWindow.h -------------------------------------------------------------------------------- /src/DisplayClassInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/DisplayClassInfo.c -------------------------------------------------------------------------------- /src/DisplayDpiInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/DisplayDpiInfo.c -------------------------------------------------------------------------------- /src/DisplayGeneralInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/DisplayGeneralInfo.c -------------------------------------------------------------------------------- /src/DisplayProcessInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/DisplayProcessInfo.c -------------------------------------------------------------------------------- /src/DisplayPropInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/DisplayPropInfo.c -------------------------------------------------------------------------------- /src/DisplayScrollInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/DisplayScrollInfo.c -------------------------------------------------------------------------------- /src/DisplayStyleInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/DisplayStyleInfo.c -------------------------------------------------------------------------------- /src/DisplayWindowInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/DisplayWindowInfo.c -------------------------------------------------------------------------------- /src/EditSize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/EditSize.c -------------------------------------------------------------------------------- /src/FindTool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/FindTool.c -------------------------------------------------------------------------------- /src/FindTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/FindTool.h -------------------------------------------------------------------------------- /src/FindToolTrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/FindToolTrans.c -------------------------------------------------------------------------------- /src/FlashWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/FlashWindow.cpp -------------------------------------------------------------------------------- /src/FunkyList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/FunkyList.c -------------------------------------------------------------------------------- /src/GetRemoteWindowInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/GetRemoteWindowInfo.c -------------------------------------------------------------------------------- /src/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/History.txt -------------------------------------------------------------------------------- /src/InjectThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/InjectThread.c -------------------------------------------------------------------------------- /src/InjectThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/InjectThread.h -------------------------------------------------------------------------------- /src/LoadPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/LoadPNG.cpp -------------------------------------------------------------------------------- /src/Options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/Options.c -------------------------------------------------------------------------------- /src/Poster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/Poster.c -------------------------------------------------------------------------------- /src/Poster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/Poster.h -------------------------------------------------------------------------------- /src/PropertyEdit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/PropertyEdit.c -------------------------------------------------------------------------------- /src/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/Readme.txt -------------------------------------------------------------------------------- /src/RegHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/RegHelper.c -------------------------------------------------------------------------------- /src/RegHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/RegHelper.h -------------------------------------------------------------------------------- /src/StaticCtrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/StaticCtrl.c -------------------------------------------------------------------------------- /src/StyleEdit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/StyleEdit.c -------------------------------------------------------------------------------- /src/TabCtrlUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/TabCtrlUtils.c -------------------------------------------------------------------------------- /src/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/Utils.c -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/WinSpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/WinSpy.c -------------------------------------------------------------------------------- /src/WinSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/WinSpy.h -------------------------------------------------------------------------------- /src/WinSpyCommand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/WinSpyCommand.c -------------------------------------------------------------------------------- /src/WinSpyDlgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/WinSpyDlgs.c -------------------------------------------------------------------------------- /src/WinSpyTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/WinSpyTree.c -------------------------------------------------------------------------------- /src/WinSpyWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/WinSpyWindow.c -------------------------------------------------------------------------------- /src/WindowFromPointEx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/WindowFromPointEx.c -------------------------------------------------------------------------------- /src/WindowFromPointEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/WindowFromPointEx.h -------------------------------------------------------------------------------- /src/resource/WinSpy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/WinSpy.rc -------------------------------------------------------------------------------- /src/resource/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/app.ico -------------------------------------------------------------------------------- /src/resource/check1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/check1.bmp -------------------------------------------------------------------------------- /src/resource/check2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/check2.bmp -------------------------------------------------------------------------------- /src/resource/cursor1.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/cursor1.cur -------------------------------------------------------------------------------- /src/resource/dots.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/dots.ico -------------------------------------------------------------------------------- /src/resource/down.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/down.ico -------------------------------------------------------------------------------- /src/resource/dragtool1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/dragtool1.bmp -------------------------------------------------------------------------------- /src/resource/dragtool2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/dragtool2.bmp -------------------------------------------------------------------------------- /src/resource/enter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/enter.ico -------------------------------------------------------------------------------- /src/resource/less.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/less.ico -------------------------------------------------------------------------------- /src/resource/more.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/more.ico -------------------------------------------------------------------------------- /src/resource/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/resource.h -------------------------------------------------------------------------------- /src/resource/selbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/selbox.png -------------------------------------------------------------------------------- /src/resource/selbox.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/selbox.psd -------------------------------------------------------------------------------- /src/resource/selbox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/selbox2.png -------------------------------------------------------------------------------- /src/resource/thumbtack.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/thumbtack.bmp -------------------------------------------------------------------------------- /src/resource/treeicons-cloaked.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/treeicons-cloaked.bmp -------------------------------------------------------------------------------- /src/resource/treeicons-hidden.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/treeicons-hidden.bmp -------------------------------------------------------------------------------- /src/resource/treeicons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/treeicons.bmp -------------------------------------------------------------------------------- /src/resource/winspy.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/resource/winspy.exe.manifest -------------------------------------------------------------------------------- /src/winspy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/winspy.vcxproj -------------------------------------------------------------------------------- /src/winspy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BissetJ/winspy/HEAD/src/winspy.vcxproj.filters --------------------------------------------------------------------------------