windows-drivers-rs icon indicating copy to clipboard operation
windows-drivers-rs copied to clipboard

Platform that enables Windows driver development in Rust. Developed by Surface.

Results 54 windows-drivers-rs issues
Sort by recently updated
recently updated
newest added

Support for building multiple targets in a single cargo make invocation should be added in the future _Originally posted by @wmmc88 in https://github.com/microsoft/windows-drivers-rs/pull/35#discussion_r1458174390_

enhancement
help wanted

Support for ARM64 tests is possibly possible in the future via target-specific test runner: https://doc.rust-lang.org/cargo/reference/config.html#target _Originally posted by @wmmc88 in https://github.com/microsoft/windows-drivers-rs/pull/35#discussion_r1458171702_

enhancement
help wanted
infrastructure

Currently, the crate that's distributed via crates.io has several things hardcoded in the configuration. Some examples of this include [the WdfFunctions_01033 functional table reference](https://github.com/microsoft/windows-drivers-rs/blob/9202e28d93232824b5469ac8f64f3980220024f5/crates/wdk-sys/src/lib.rs#L63C9-L63C63), and the [WdfMinimumVersionDesired symbol](https://github.com/microsoft/windows-drivers-rs/blob/9202e28d93232824b5469ac8f64f3980220024f5/crates/wdk-sys/src/wdf.rs#L23). The `wdk-build::Config`...

enhancement

This version, along with the versions in the cargo-make makefiles(including the other pinned binary dependencies) should be auto-updated by pipelines (similar to other things managed by dependabot). It looks like...

infrastructure

When I use this warehouse to create a static library, the compilation is successful. However, when I connect this static library to a driver (written in c/cpp/rust), a connection error...

1. Define the `CTL_CODE` macro and the `IoGetCurrentIrpStackLocation` function. 2. Move constants and macros (such as `FILE_DEVICE_UNKNOWN`, `METHOD_BUFFERED`, and others) from this crate and [windows-rs](https://github.com/microsoft/windows-rs) to a shared crate. **Motivation**:...

I'm trying to use the repo to write a keyboard driver - https://github.com/lurebat/interustception My problem is as such: When using `WDF_IO_QUEUE_CONFIG`, everything is fine as long as I use `EvtIoDeviceControl`....

Future improvement: add support for specifying specific OS'es to sign for in inf2cat task _Originally posted by @wmmc88 in https://github.com/microsoft/windows-drivers-rs/pull/35#discussion_r1458178417_

Hello friend, I've noticed that a lot of people, especially in various Discord communities, are discussing an issue with the Windows 10 driver not working correctly for `wdk-sys`. Here's a...

Hi, thanks for this repo, it provide great help, I setup a kmdf driver from the example But I need to know the status of the repo, is it fully...