Gurinder Singh

Results 43 issues of Gurinder Singh

_Originally posted by @wmmc88 in https://github.com/microsoft/windows-drivers-rs/pull/495#discussion_r2396370352_

infrastructure

When you create a new project with `cargo wdk new` command and then immediately run `cargo wdk build` the build fails with InfVerif errors. This makes for a bad user...

`Builder` methods [`allowlist_*`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.allowlist_type) and [`blocklist_*`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.blocklist_type) do not support case-insensitive regex patterns like `((?i).*foo)` (note the **`(?i)`** modifier). If you try to use them: ```rust let bindings = bindgen::Builder::default() .header("myheader.h") .allowlist_file("(?i).*foo")...