├── .clang-format ├── .gitattributes ├── .github └── workflows │ ├── build-arm64.yml │ └── build-win64.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake.toml ├── cmake ├── FindWDK.cmake ├── TestSigning.pfx ├── TestSigning.txt └── msvc-configurations.cmake ├── cmkr.cmake ├── lib ├── CMakeLists.txt ├── cmake.toml └── utils │ ├── utils.cpp │ └── utils.h └── sys └── drv1 ├── driver.cpp └── driver.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/.github/workflows/build-arm64.yml -------------------------------------------------------------------------------- /.github/workflows/build-win64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/.github/workflows/build-win64.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/README.md -------------------------------------------------------------------------------- /cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/cmake.toml -------------------------------------------------------------------------------- /cmake/FindWDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/cmake/FindWDK.cmake -------------------------------------------------------------------------------- /cmake/TestSigning.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/cmake/TestSigning.pfx -------------------------------------------------------------------------------- /cmake/TestSigning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/cmake/TestSigning.txt -------------------------------------------------------------------------------- /cmake/msvc-configurations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/cmake/msvc-configurations.cmake -------------------------------------------------------------------------------- /cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/cmkr.cmake -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/lib/cmake.toml -------------------------------------------------------------------------------- /lib/utils/utils.cpp: -------------------------------------------------------------------------------- 1 | #include "utils.h" 2 | -------------------------------------------------------------------------------- /lib/utils/utils.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /sys/drv1/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/sys/drv1/driver.cpp -------------------------------------------------------------------------------- /sys/drv1/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/llvm-msvc-windows-driver-template/HEAD/sys/drv1/driver.h --------------------------------------------------------------------------------