├── .clang-format ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── llvm_56379_workaround.hpp ├── main.cpp ├── meson.build └── setup.iss /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-ayr/win11-toggle-rounded-corners/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-ayr/win11-toggle-rounded-corners/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-ayr/win11-toggle-rounded-corners/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-ayr/win11-toggle-rounded-corners/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-ayr/win11-toggle-rounded-corners/HEAD/README.md -------------------------------------------------------------------------------- /llvm_56379_workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-ayr/win11-toggle-rounded-corners/HEAD/llvm_56379_workaround.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-ayr/win11-toggle-rounded-corners/HEAD/main.cpp -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-ayr/win11-toggle-rounded-corners/HEAD/meson.build -------------------------------------------------------------------------------- /setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-ayr/win11-toggle-rounded-corners/HEAD/setup.iss --------------------------------------------------------------------------------