├── .clang-format ├── .gitignore ├── README.md ├── includes ├── CTimer.h ├── InitConsole.h ├── config.h ├── d2d.h ├── globals.h ├── hook.h ├── main.h ├── utils.h └── window.h ├── scripts ├── config_files │ ├── .clangd │ └── CMakeLists.txt ├── lcompile.ps1 ├── lcompile_release.ps1 ├── llaunch.ps1 ├── lrun.ps1 └── prepare_env.py └── src ├── config.cpp ├── d2d.cpp ├── hook.cpp ├── main.cpp ├── utils.cpp └── window.cpp /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: Microsoft 3 | IndentWidth: 4 4 | 5 | # SortIncludes: false 6 | ColumnLimit: 300 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/README.md -------------------------------------------------------------------------------- /includes/CTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/includes/CTimer.h -------------------------------------------------------------------------------- /includes/InitConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/includes/InitConsole.h -------------------------------------------------------------------------------- /includes/config.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void InitializeConfig(); -------------------------------------------------------------------------------- /includes/d2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/includes/d2d.h -------------------------------------------------------------------------------- /includes/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/includes/globals.h -------------------------------------------------------------------------------- /includes/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/includes/hook.h -------------------------------------------------------------------------------- /includes/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/includes/main.h -------------------------------------------------------------------------------- /includes/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/includes/utils.h -------------------------------------------------------------------------------- /includes/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/includes/window.h -------------------------------------------------------------------------------- /scripts/config_files/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/scripts/config_files/.clangd -------------------------------------------------------------------------------- /scripts/config_files/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/scripts/config_files/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/lcompile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/scripts/lcompile.ps1 -------------------------------------------------------------------------------- /scripts/lcompile_release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/scripts/lcompile_release.ps1 -------------------------------------------------------------------------------- /scripts/llaunch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/scripts/llaunch.ps1 -------------------------------------------------------------------------------- /scripts/lrun.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/scripts/lrun.ps1 -------------------------------------------------------------------------------- /scripts/prepare_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/scripts/prepare_env.py -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/d2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/src/d2d.cpp -------------------------------------------------------------------------------- /src/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/src/hook.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/DirectKeycast/HEAD/src/window.cpp --------------------------------------------------------------------------------