├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── copyFiles.bat ├── copyReleaseFiles.bat ├── data └── locale │ ├── en-US.ini │ └── sv-SE.ini ├── external └── FindLibObs.cmake ├── makeDebugDist.bat ├── makeDist.bat ├── src ├── capture-internals.h ├── getHWND.c ├── getHWND.h ├── monitor.c ├── properties.c ├── setup.c ├── signals.c ├── tick.c └── window-follower.h └── troubleshooting.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/README.md -------------------------------------------------------------------------------- /copyFiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/copyFiles.bat -------------------------------------------------------------------------------- /copyReleaseFiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/copyReleaseFiles.bat -------------------------------------------------------------------------------- /data/locale/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/data/locale/en-US.ini -------------------------------------------------------------------------------- /data/locale/sv-SE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/data/locale/sv-SE.ini -------------------------------------------------------------------------------- /external/FindLibObs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/external/FindLibObs.cmake -------------------------------------------------------------------------------- /makeDebugDist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/makeDebugDist.bat -------------------------------------------------------------------------------- /makeDist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/makeDist.bat -------------------------------------------------------------------------------- /src/capture-internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/src/capture-internals.h -------------------------------------------------------------------------------- /src/getHWND.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/src/getHWND.c -------------------------------------------------------------------------------- /src/getHWND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/src/getHWND.h -------------------------------------------------------------------------------- /src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/src/monitor.c -------------------------------------------------------------------------------- /src/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/src/properties.c -------------------------------------------------------------------------------- /src/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/src/setup.c -------------------------------------------------------------------------------- /src/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/src/signals.c -------------------------------------------------------------------------------- /src/tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/src/tick.c -------------------------------------------------------------------------------- /src/window-follower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/src/window-follower.h -------------------------------------------------------------------------------- /troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henke37/window-follower/HEAD/troubleshooting.md --------------------------------------------------------------------------------