File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ rustflags = [\"-C\", \"target-feature=+crt-static\"]
195
195
pub enum ApiSubset {
196
196
/// API subset typically required for all Windows drivers
197
197
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/>
199
199
Wdf ,
200
200
/// API subset for HID (Human Interface Device) drivers: <https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/_hid/>
201
201
Hid ,
Original file line number Diff line number Diff line change @@ -153,7 +153,6 @@ pub static mut {WDFFUNCTIONS_SYMBOL_NAME_PLACEHOLDER}: *const WDFFUNC = core::pt
153
153
type GenerateFn = fn ( & Path , & Config ) -> Result < ( ) , ConfigError > ;
154
154
155
155
const BINDGEN_FILE_GENERATORS_TUPLES : & [ ( & str , GenerateFn ) ] = & [
156
- // TODO: rename all references of constants to constant and variables
157
156
( "constants.rs" , generate_constants) ,
158
157
( "types.rs" , generate_types) ,
159
158
( "base.rs" , generate_base) ,
You can’t perform that action at this time.
0 commit comments