Skip to content

Commit 852532a

Browse files
committed
fix link
1 parent 90a52c2 commit 852532a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

crates/wdk-build/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ rustflags = [\"-C\", \"target-feature=+crt-static\"]
195195
pub enum ApiSubset {
196196
/// API subset typically required for all Windows drivers
197197
Base,
198-
/// API subset required for WDF (Windows Driver Framework) drivers
198+
/// API subset required for WDF (Windows Driver Framework) drivers: <https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/_wdf/>
199199
Wdf,
200200
/// API subset for HID (Human Interface Device) drivers: <https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/_hid/>
201201
Hid,

crates/wdk-sys/build.rs

-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ pub static mut {WDFFUNCTIONS_SYMBOL_NAME_PLACEHOLDER}: *const WDFFUNC = core::pt
153153
type GenerateFn = fn(&Path, &Config) -> Result<(), ConfigError>;
154154

155155
const BINDGEN_FILE_GENERATORS_TUPLES: &[(&str, GenerateFn)] = &[
156-
// TODO: rename all references of constants to constant and variables
157156
("constants.rs", generate_constants),
158157
("types.rs", generate_types),
159158
("base.rs", generate_base),

0 commit comments

Comments
 (0)