code_ownership 2.0.0.pre.1 → 2.0.0.pre.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.cargo/config +2 -2
- data/Cargo.lock +22 -31
- data/ext/cargo-vendor/codeowners-0.2.17/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/Cargo.lock +1257 -0
- data/ext/cargo-vendor/codeowners-0.2.17/Cargo.toml +111 -0
- data/ext/cargo-vendor/codeowners-0.2.17/README.md +287 -0
- data/ext/cargo-vendor/codeowners-0.2.17/dev/run_benchmarks_for_gv.sh +12 -0
- data/ext/cargo-vendor/codeowners-0.2.17/rust-toolchain.toml +4 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/cache/file.rs +179 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/cli.rs +129 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/common_test.rs +358 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/config.rs +126 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/crosscheck.rs +90 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/lib.rs +11 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/main.rs +43 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/codeowners_file_parser.rs +504 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/codeowners_query.rs +32 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/file_generator.rs +203 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/file_owner_resolver.rs +414 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/mapper/annotated_file_mapper.rs +158 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/mapper/package_mapper.rs +220 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/mapper.rs +249 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/validator.rs +218 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership.rs +223 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/path_utils.rs +49 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/project.rs +229 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/project_builder.rs +337 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/project_file_builder.rs +107 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/runner/api.rs +141 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/runner/types.rs +37 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/runner.rs +390 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/tracked_files.rs +58 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/common/mod.rs +179 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/crosscheck_owners_test.rs +74 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/.github/CODEOWNERS +9 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/.keep +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/config/code_ownership.yml +12 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/config/teams/design.yml +7 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/config/teams/frontend.yml +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/frontend/apps/public/index.tsx +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/frontend/packages/dashboard/package.json +9 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/frontend/packages/dashboard/src/index.tsx +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/frontend/packages/ui-kit/.codeowner +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/frontend/packages/ui-kit/src/button.tsx +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/multiple-directory-owners/config/code_ownership.yml +10 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/.github/CODEOWNERS +41 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/config/code_ownership.yml +10 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/javascript/packages/list/page-admin.tsx +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/ruby/app/models/payroll.rb +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/ruby/app/views/foos/edit.erb +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/ruby/app/views/foos/index.html.erb +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/ruby/app/views/foos/new.html.erb +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/.github/CODEOWNERS +53 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/config/code_ownership.yml +10 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/config/teams/brewers.yml +11 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/config/teams/cubs.yml +9 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/config/teams/giants.yml +8 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/config/teams/rockies.yml +8 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/datepicker/package.json +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/datepicker/src/picks/dp.tsx +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/list/package.json +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/list/src/item.tsx +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/textfield/package.json +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/textfield/src/field.tsx +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/textfield/src/fields/small.tsx +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/gems/apollo/lib/apollo.rb +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/gems/ivy/lib/ivy.rb +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/gems/lager/lib/lager.rb +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/gems/summit/lib/summit.rb +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/games/package.yml +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/locations/app/services/capacity.rb +0 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/locations/package.yml +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/schedule/app/services/date.rb +0 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/schedule/package.yml +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/brewers/lib/util.rb +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/brewers/services/play.rb +9 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/cubs/.codeowner +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/cubs/services/models/.codeowner +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/cubs/services/models/db/price.rb +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/cubs/services/models/entertainment.rb +0 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/cubs/services/play.rb +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/giants/services/play.rb +0 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/rockies/services/play.rb +0 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/invalid_project_test.rs +144 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/multiple_directory_owners_test.rs +41 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/runner_api.rs +181 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/untracked_files_test.rs +38 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/valid_project_test.rs +348 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/valid_project_with_overrides_test.rs +38 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tmp/.gitkeep +0 -0
- data/ext/cargo-vendor/glob-0.3.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/glob-0.3.3/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/glob-0.3.3/.github/workflows/rust.yml +99 -0
- data/ext/cargo-vendor/glob-0.3.3/CHANGELOG.md +44 -0
- data/ext/cargo-vendor/glob-0.3.3/Cargo.lock +107 -0
- data/ext/cargo-vendor/glob-0.3.3/Cargo.toml +45 -0
- data/ext/cargo-vendor/glob-0.3.3/Cargo.toml.orig +18 -0
- data/ext/cargo-vendor/glob-0.3.3/README.md +38 -0
- data/ext/cargo-vendor/glob-0.3.3/src/lib.rs +1511 -0
- data/ext/cargo-vendor/glob-0.3.3/tests/glob-std.rs +477 -0
- data/ext/cargo-vendor/indexmap-2.11.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/indexmap-2.11.0/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/indexmap-2.11.0/.github/workflows/ci.yml +165 -0
- data/ext/cargo-vendor/indexmap-2.11.0/Cargo.lock +243 -0
- data/ext/cargo-vendor/indexmap-2.11.0/Cargo.toml +148 -0
- data/ext/cargo-vendor/indexmap-2.11.0/Cargo.toml.orig +62 -0
- data/ext/cargo-vendor/indexmap-2.11.0/RELEASES.md +575 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/lib.rs +290 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map/core/entry.rs +625 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map/core.rs +764 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map/mutable.rs +165 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map/slice.rs +800 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map/tests.rs +1312 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map.rs +1832 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/rayon/map.rs +686 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/rayon/set.rs +777 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/set/mutable.rs +86 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/set/slice.rs +427 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/set/tests.rs +1060 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/set.rs +1454 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/sval.rs +36 -0
- data/ext/cargo-vendor/indexmap-2.11.0/tests/quick.rs +894 -0
- data/ext/cargo-vendor/rayon-1.11.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rayon-1.11.0/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/rayon-1.11.0/Cargo.lock +318 -0
- data/ext/cargo-vendor/rayon-1.11.0/Cargo.toml +130 -0
- data/ext/cargo-vendor/rayon-1.11.0/Cargo.toml.orig +57 -0
- data/ext/cargo-vendor/rayon-1.11.0/FAQ.md +213 -0
- data/ext/cargo-vendor/rayon-1.11.0/README.md +150 -0
- data/ext/cargo-vendor/rayon-1.11.0/RELEASES.md +922 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/array.rs +85 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/binary_heap.rs +129 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/btree_map.rs +66 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/btree_set.rs +52 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/hash_map.rs +93 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/hash_set.rs +79 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/linked_list.rs +66 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/mod.rs +84 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/vec_deque.rs +159 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/blocks.rs +129 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/chain.rs +258 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/chunks.rs +216 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/cloned.rs +219 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/collect/mod.rs +114 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/collect/test.rs +368 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/copied.rs +219 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/empty.rs +108 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/enumerate.rs +128 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/filter.rs +137 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/filter_map.rs +141 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/find_first_last/mod.rs +230 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/find_first_last/test.rs +102 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/flat_map.rs +153 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/flat_map_iter.rs +145 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/flatten.rs +134 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/flatten_iter.rs +124 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/fold.rs +289 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/fold_chunks.rs +224 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/fold_chunks_with.rs +220 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/from_par_iter.rs +280 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/inspect.rs +253 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/interleave.rs +326 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/interleave_shortest.rs +80 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/intersperse.rs +401 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/len.rs +262 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/map.rs +255 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/map_with.rs +565 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/mod.rs +3627 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/multizip.rs +335 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/once.rs +70 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/panic_fuse.rs +338 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/par_bridge.rs +157 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/plumbing/mod.rs +476 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/positions.rs +133 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/repeat.rs +295 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/rev.rs +119 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/skip.rs +93 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/skip_any.rs +140 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/skip_any_while.rs +162 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/splitter.rs +172 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/step_by.rs +135 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/take.rs +84 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/take_any.rs +140 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/take_any_while.rs +162 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/test.rs +2392 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/try_fold.rs +282 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/unzip.rs +524 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/update.rs +323 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/walk_tree.rs +524 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/while_some.rs +150 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/zip.rs +153 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/zip_eq.rs +67 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/lib.rs +156 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/math.rs +25 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/option.rs +197 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/range.rs +457 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/range_inclusive.rs +381 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/result.rs +132 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/chunk_by.rs +239 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/chunks.rs +387 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/mod.rs +1242 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/rchunks.rs +385 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/sort.rs +1686 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/test.rs +216 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/str.rs +1005 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/vec.rs +292 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/clones.rs +222 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/collect.rs +113 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/debug.rs +233 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/named-threads.rs +25 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/producer_split_at.rs +386 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/sort-panic-safe.rs +164 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/str.rs +122 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/Cargo.lock +309 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/Cargo.toml +93 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/Cargo.toml.orig +35 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/README.md +11 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/broadcast/mod.rs +150 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/join/mod.rs +186 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/join/test.rs +150 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/latch.rs +457 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/lib.rs +864 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/registry.rs +1002 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/scope/mod.rs +773 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/scope/test.rs +621 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/sleep/README.md +219 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/sleep/counters.rs +273 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/sleep/mod.rs +324 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/spawn/mod.rs +163 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/spawn/test.rs +255 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/test.rs +200 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/thread_pool/mod.rs +502 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/thread_pool/test.rs +418 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/tests/use_current_thread.rs +57 -0
- data/ext/cargo-vendor/serde_json-1.0.143/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_json-1.0.143/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/serde_json-1.0.143/.github/workflows/ci.yml +156 -0
- data/ext/cargo-vendor/serde_json-1.0.143/Cargo.lock +419 -0
- data/ext/cargo-vendor/serde_json-1.0.143/Cargo.toml +157 -0
- data/ext/cargo-vendor/serde_json-1.0.143/Cargo.toml.orig +91 -0
- data/ext/cargo-vendor/serde_json-1.0.143/src/lib.rs +438 -0
- data/ext/cargo-vendor/serde_json-1.0.143/src/map.rs +1181 -0
- data/ext/cargo-vendor/serde_json-1.0.143/src/ser.rs +2285 -0
- data/ext/cargo-vendor/serde_json-1.0.143/src/value/de.rs +1507 -0
- data/ext/cargo-vendor/tempfile-3.21.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/tempfile-3.21.0/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/tempfile-3.21.0/.github/workflows/ci.yml +109 -0
- data/ext/cargo-vendor/tempfile-3.21.0/CHANGELOG.md +364 -0
- data/ext/cargo-vendor/tempfile-3.21.0/Cargo.lock +196 -0
- data/ext/cargo-vendor/tempfile-3.21.0/Cargo.toml +98 -0
- data/ext/cargo-vendor/tempfile-3.21.0/Cargo.toml.orig +47 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/.github/FUNDING.yml +1 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/Cargo.lock +83 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/Cargo.toml +54 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/Cargo.toml.orig +25 -0
- data/ext/code_ownership/Cargo.toml +9 -9
- data/ext/code_ownership/src/lib.rs +40 -6
- data/lib/code_ownership/cli.rb +5 -18
- data/lib/code_ownership/private/for_file_output_builder.rb +83 -0
- data/lib/code_ownership/private/team_finder.rb +21 -7
- data/lib/code_ownership/version.rb +1 -1
- data/lib/code_ownership.rb +173 -6
- metadata +513 -706
- data/ext/cargo-vendor/codeowners-0.2.7/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/codeowners-0.2.7/Cargo.lock +0 -1230
- data/ext/cargo-vendor/codeowners-0.2.7/Cargo.toml +0 -95
- data/ext/cargo-vendor/codeowners-0.2.7/README.md +0 -204
- data/ext/cargo-vendor/codeowners-0.2.7/dev/run_benchmarks_for_gv.sh +0 -13
- data/ext/cargo-vendor/codeowners-0.2.7/rust-toolchain.toml +0 -4
- data/ext/cargo-vendor/codeowners-0.2.7/src/cache/file.rs +0 -181
- data/ext/cargo-vendor/codeowners-0.2.7/src/cli.rs +0 -119
- data/ext/cargo-vendor/codeowners-0.2.7/src/common_test.rs +0 -338
- data/ext/cargo-vendor/codeowners-0.2.7/src/config.rs +0 -118
- data/ext/cargo-vendor/codeowners-0.2.7/src/lib.rs +0 -8
- data/ext/cargo-vendor/codeowners-0.2.7/src/main.rs +0 -43
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/file_generator.rs +0 -203
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/for_file_fast.rs +0 -425
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/mapper/package_mapper.rs +0 -220
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/mapper/team_file_mapper.rs +0 -123
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/mapper.rs +0 -249
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/parser.rs +0 -486
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/tests.rs +0 -219
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/validator.rs +0 -218
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership.rs +0 -220
- data/ext/cargo-vendor/codeowners-0.2.7/src/project.rs +0 -229
- data/ext/cargo-vendor/codeowners-0.2.7/src/project_builder.rs +0 -319
- data/ext/cargo-vendor/codeowners-0.2.7/src/project_file_builder.rs +0 -75
- data/ext/cargo-vendor/codeowners-0.2.7/src/runner.rs +0 -312
- data/ext/cargo-vendor/codeowners-0.2.7/tests/common/mod.rs +0 -113
- data/ext/cargo-vendor/codeowners-0.2.7/tests/fixtures/multiple-directory-owners/config/code_ownership.yml +0 -10
- data/ext/cargo-vendor/codeowners-0.2.7/tests/fixtures/valid_project/.github/CODEOWNERS +0 -37
- data/ext/cargo-vendor/codeowners-0.2.7/tests/fixtures/valid_project/config/code_ownership.yml +0 -10
- data/ext/cargo-vendor/codeowners-0.2.7/tests/fixtures/valid_project/ruby/app/models/payroll.rb +0 -3
- data/ext/cargo-vendor/codeowners-0.2.7/tests/invalid_project_test.rs +0 -90
- data/ext/cargo-vendor/codeowners-0.2.7/tests/multiple_directory_owners_test.rs +0 -35
- data/ext/cargo-vendor/codeowners-0.2.7/tests/valid_project_test.rs +0 -284
- data/ext/cargo-vendor/glob-0.3.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/glob-0.3.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/glob-0.3.2/.github/workflows/rust.yml +0 -65
- data/ext/cargo-vendor/glob-0.3.2/CHANGELOG.md +0 -33
- data/ext/cargo-vendor/glob-0.3.2/Cargo.lock +0 -107
- data/ext/cargo-vendor/glob-0.3.2/Cargo.toml +0 -45
- data/ext/cargo-vendor/glob-0.3.2/Cargo.toml.orig +0 -19
- data/ext/cargo-vendor/glob-0.3.2/README.md +0 -37
- data/ext/cargo-vendor/glob-0.3.2/src/lib.rs +0 -1501
- data/ext/cargo-vendor/glob-0.3.2/tests/glob-std.rs +0 -474
- data/ext/cargo-vendor/indexmap-2.10.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/indexmap-2.10.0/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/indexmap-2.10.0/.github/workflows/ci.yml +0 -159
- data/ext/cargo-vendor/indexmap-2.10.0/Cargo.lock +0 -236
- data/ext/cargo-vendor/indexmap-2.10.0/Cargo.toml +0 -142
- data/ext/cargo-vendor/indexmap-2.10.0/Cargo.toml.orig +0 -61
- data/ext/cargo-vendor/indexmap-2.10.0/RELEASES.md +0 -563
- data/ext/cargo-vendor/indexmap-2.10.0/src/lib.rs +0 -288
- data/ext/cargo-vendor/indexmap-2.10.0/src/map/core/entry.rs +0 -574
- data/ext/cargo-vendor/indexmap-2.10.0/src/map/core.rs +0 -735
- data/ext/cargo-vendor/indexmap-2.10.0/src/map/mutable.rs +0 -165
- data/ext/cargo-vendor/indexmap-2.10.0/src/map/slice.rs +0 -751
- data/ext/cargo-vendor/indexmap-2.10.0/src/map/tests.rs +0 -1228
- data/ext/cargo-vendor/indexmap-2.10.0/src/map.rs +0 -1697
- data/ext/cargo-vendor/indexmap-2.10.0/src/rayon/map.rs +0 -662
- data/ext/cargo-vendor/indexmap-2.10.0/src/rayon/set.rs +0 -755
- data/ext/cargo-vendor/indexmap-2.10.0/src/set/mutable.rs +0 -86
- data/ext/cargo-vendor/indexmap-2.10.0/src/set/slice.rs +0 -380
- data/ext/cargo-vendor/indexmap-2.10.0/src/set/tests.rs +0 -999
- data/ext/cargo-vendor/indexmap-2.10.0/src/set.rs +0 -1340
- data/ext/cargo-vendor/indexmap-2.10.0/tests/quick.rs +0 -800
- data/ext/cargo-vendor/rayon-1.10.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rayon-1.10.0/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/rayon-1.10.0/Cargo.toml +0 -61
- data/ext/cargo-vendor/rayon-1.10.0/Cargo.toml.orig +0 -39
- data/ext/cargo-vendor/rayon-1.10.0/FAQ.md +0 -227
- data/ext/cargo-vendor/rayon-1.10.0/README.md +0 -151
- data/ext/cargo-vendor/rayon-1.10.0/RELEASES.md +0 -909
- data/ext/cargo-vendor/rayon-1.10.0/src/array.rs +0 -85
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/binary_heap.rs +0 -120
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/btree_map.rs +0 -66
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/btree_set.rs +0 -52
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/hash_map.rs +0 -96
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/hash_set.rs +0 -80
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/linked_list.rs +0 -66
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/mod.rs +0 -84
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/vec_deque.rs +0 -159
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/blocks.rs +0 -131
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/chain.rs +0 -267
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/chunks.rs +0 -224
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/cloned.rs +0 -223
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/collect/mod.rs +0 -116
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/collect/test.rs +0 -373
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/copied.rs +0 -223
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/empty.rs +0 -104
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/enumerate.rs +0 -133
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/filter.rs +0 -141
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/filter_map.rs +0 -142
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/find_first_last/mod.rs +0 -230
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/find_first_last/test.rs +0 -105
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/flat_map.rs +0 -154
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/flat_map_iter.rs +0 -147
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/flatten.rs +0 -140
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/flatten_iter.rs +0 -132
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/fold.rs +0 -302
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/fold_chunks.rs +0 -236
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/fold_chunks_with.rs +0 -231
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/from_par_iter.rs +0 -310
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/inspect.rs +0 -257
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/interleave.rs +0 -335
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/interleave_shortest.rs +0 -85
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/intersperse.rs +0 -410
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/len.rs +0 -270
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/map.rs +0 -259
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/map_with.rs +0 -573
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/mod.rs +0 -3656
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/multizip.rs +0 -338
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/once.rs +0 -68
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/panic_fuse.rs +0 -342
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/par_bridge.rs +0 -159
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/plumbing/mod.rs +0 -483
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/positions.rs +0 -137
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/repeat.rs +0 -241
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/rev.rs +0 -123
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/skip.rs +0 -94
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/skip_any.rs +0 -144
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/skip_any_while.rs +0 -166
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/splitter.rs +0 -174
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/step_by.rs +0 -141
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/take.rs +0 -85
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/take_any.rs +0 -144
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/take_any_while.rs +0 -166
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/test.rs +0 -2333
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/try_fold.rs +0 -298
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/unzip.rs +0 -525
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/update.rs +0 -327
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/walk_tree.rs +0 -529
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/while_some.rs +0 -154
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/zip.rs +0 -158
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/zip_eq.rs +0 -72
- data/ext/cargo-vendor/rayon-1.10.0/src/lib.rs +0 -160
- data/ext/cargo-vendor/rayon-1.10.0/src/math.rs +0 -54
- data/ext/cargo-vendor/rayon-1.10.0/src/option.rs +0 -203
- data/ext/cargo-vendor/rayon-1.10.0/src/range.rs +0 -454
- data/ext/cargo-vendor/rayon-1.10.0/src/range_inclusive.rs +0 -381
- data/ext/cargo-vendor/rayon-1.10.0/src/result.rs +0 -132
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/chunk_by.rs +0 -244
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/chunks.rs +0 -388
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/mergesort.rs +0 -755
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/mod.rs +0 -1226
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/quicksort.rs +0 -902
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/rchunks.rs +0 -386
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/test.rs +0 -216
- data/ext/cargo-vendor/rayon-1.10.0/src/str.rs +0 -1010
- data/ext/cargo-vendor/rayon-1.10.0/src/vec.rs +0 -283
- data/ext/cargo-vendor/rayon-1.10.0/tests/clones.rs +0 -222
- data/ext/cargo-vendor/rayon-1.10.0/tests/collect.rs +0 -113
- data/ext/cargo-vendor/rayon-1.10.0/tests/debug.rs +0 -233
- data/ext/cargo-vendor/rayon-1.10.0/tests/named-threads.rs +0 -25
- data/ext/cargo-vendor/rayon-1.10.0/tests/producer_split_at.rs +0 -391
- data/ext/cargo-vendor/rayon-1.10.0/tests/sort-panic-safe.rs +0 -167
- data/ext/cargo-vendor/rayon-1.10.0/tests/str.rs +0 -119
- data/ext/cargo-vendor/rayon-core-1.12.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rayon-core-1.12.1/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/rayon-core-1.12.1/Cargo.toml +0 -88
- data/ext/cargo-vendor/rayon-core-1.12.1/Cargo.toml.orig +0 -68
- data/ext/cargo-vendor/rayon-core-1.12.1/README.md +0 -11
- data/ext/cargo-vendor/rayon-core-1.12.1/src/broadcast/mod.rs +0 -150
- data/ext/cargo-vendor/rayon-core-1.12.1/src/join/mod.rs +0 -188
- data/ext/cargo-vendor/rayon-core-1.12.1/src/join/test.rs +0 -151
- data/ext/cargo-vendor/rayon-core-1.12.1/src/latch.rs +0 -461
- data/ext/cargo-vendor/rayon-core-1.12.1/src/lib.rs +0 -875
- data/ext/cargo-vendor/rayon-core-1.12.1/src/registry.rs +0 -996
- data/ext/cargo-vendor/rayon-core-1.12.1/src/scope/mod.rs +0 -769
- data/ext/cargo-vendor/rayon-core-1.12.1/src/scope/test.rs +0 -619
- data/ext/cargo-vendor/rayon-core-1.12.1/src/sleep/README.md +0 -219
- data/ext/cargo-vendor/rayon-core-1.12.1/src/sleep/counters.rs +0 -277
- data/ext/cargo-vendor/rayon-core-1.12.1/src/sleep/mod.rs +0 -325
- data/ext/cargo-vendor/rayon-core-1.12.1/src/spawn/mod.rs +0 -163
- data/ext/cargo-vendor/rayon-core-1.12.1/src/spawn/test.rs +0 -255
- data/ext/cargo-vendor/rayon-core-1.12.1/src/test.rs +0 -200
- data/ext/cargo-vendor/rayon-core-1.12.1/src/thread_pool/mod.rs +0 -508
- data/ext/cargo-vendor/rayon-core-1.12.1/src/thread_pool/test.rs +0 -418
- data/ext/cargo-vendor/rayon-core-1.12.1/tests/use_current_thread.rs +0 -57
- data/ext/cargo-vendor/serde_json-1.0.142/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_json-1.0.142/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/serde_json-1.0.142/.github/workflows/ci.yml +0 -158
- data/ext/cargo-vendor/serde_json-1.0.142/Cargo.lock +0 -419
- data/ext/cargo-vendor/serde_json-1.0.142/Cargo.toml +0 -157
- data/ext/cargo-vendor/serde_json-1.0.142/Cargo.toml.orig +0 -91
- data/ext/cargo-vendor/serde_json-1.0.142/src/lib.rs +0 -438
- data/ext/cargo-vendor/serde_json-1.0.142/src/map.rs +0 -1174
- data/ext/cargo-vendor/serde_json-1.0.142/src/ser.rs +0 -2285
- data/ext/cargo-vendor/serde_json-1.0.142/src/value/de.rs +0 -1500
- data/ext/cargo-vendor/tempfile-3.20.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/tempfile-3.20.0/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/tempfile-3.20.0/.github/workflows/ci.yml +0 -107
- data/ext/cargo-vendor/tempfile-3.20.0/CHANGELOG.md +0 -360
- data/ext/cargo-vendor/tempfile-3.20.0/Cargo.lock +0 -183
- data/ext/cargo-vendor/tempfile-3.20.0/Cargo.toml +0 -98
- data/ext/cargo-vendor/tempfile-3.20.0/Cargo.toml.orig +0 -47
- data/ext/cargo-vendor/winapi-util-0.1.9/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winapi-util-0.1.9/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/winapi-util-0.1.9/Cargo.toml +0 -53
- data/ext/cargo-vendor/winapi-util-0.1.9/Cargo.toml.orig +0 -25
- data/ext/cargo-vendor/windows-sys-0.59.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows-sys-0.59.0/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/windows-sys-0.59.0/Cargo.toml +0 -298
- data/ext/cargo-vendor/windows-sys-0.59.0/Cargo.toml.orig +0 -274
- data/ext/cargo-vendor/windows-sys-0.59.0/license-apache-2.0 +0 -201
- data/ext/cargo-vendor/windows-sys-0.59.0/license-mit +0 -21
- data/ext/cargo-vendor/windows-sys-0.59.0/readme.md +0 -87
- data/ext/cargo-vendor/windows-sys-0.59.0/rustfmt.toml +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Devices/Bluetooth/mod.rs +0 -32
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs +0 -39
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Devices/mod.rs +0 -4
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Foundation/mod.rs +0 -1317
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Graphics/Direct3D/mod.rs +0 -9170
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Graphics/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs +0 -3892
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs +0 -269
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/NetworkManagement/mod.rs +0 -4
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs +0 -1392
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Storage/FileSystem/mod.rs +0 -4503
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Storage/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/IO/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/Memory/mod.rs +0 -11
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/OfflineRegistry/mod.rs +0 -28
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/Registry/mod.rs +0 -180
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/SystemInformation/mod.rs +0 -18
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/SystemServices/mod.rs +0 -13663
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/Threading/mod.rs +0 -155
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/mod.rs +0 -14
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/mod.rs +0 -12
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Data/HtmlHelp/mod.rs +0 -447
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Data/RightsManagement/mod.rs +0 -237
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Data/mod.rs +0 -4
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/AllJoyn/mod.rs +0 -1273
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/BiometricFramework/mod.rs +0 -1481
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Bluetooth/mod.rs +0 -1419
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Communication/mod.rs +0 -312
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs +0 -3969
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/DeviceQuery/mod.rs +0 -141
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Display/mod.rs +0 -3141
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs +0 -96
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Enumeration/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Fax/mod.rs +0 -1203
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/HumanInterfaceDevice/mod.rs +0 -3684
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/PortableDevices/mod.rs +0 -1999
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Properties/mod.rs +0 -261
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Pwm/mod.rs +0 -73
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Sensors/mod.rs +0 -687
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/SerialCommunication/mod.rs +0 -230
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Tapi/mod.rs +0 -3217
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Usb/mod.rs +0 -2694
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/WebServicesOnDevices/mod.rs +0 -660
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/mod.rs +0 -36
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Foundation/mod.rs +0 -10318
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Gaming/mod.rs +0 -99
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Globalization/mod.rs +0 -5135
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/Dwm/mod.rs +0 -232
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/Gdi/mod.rs +0 -3857
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/GdiPlus/mod.rs +0 -2307
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/Hlsl/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/OpenGL/mod.rs +0 -1276
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs +0 -28
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/Printing/mod.rs +0 -4147
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/mod.rs +0 -12
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Management/MobileDeviceManagementRegistration/mod.rs +0 -101
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Management/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/Audio/mod.rs +0 -2052
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/DxMediaObjects/mod.rs +0 -94
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/KernelStreaming/mod.rs +0 -5281
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/Multimedia/mod.rs +0 -6442
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/Streaming/mod.rs +0 -117
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/WindowsMediaFormat/mod.rs +0 -910
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/mod.rs +0 -187
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Dhcp/mod.rs +0 -1926
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Dns/mod.rs +0 -1564
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/InternetConnectionWizard/mod.rs +0 -22
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs +0 -3004
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Multicast/mod.rs +0 -59
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Ndis/mod.rs +0 -3334
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/NetBios/mod.rs +0 -211
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs +0 -4814
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/NetShell/mod.rs +0 -160
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/NetworkDiagnosticsFramework/mod.rs +0 -222
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/P2P/mod.rs +0 -1196
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/QoS/mod.rs +0 -1447
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Rras/mod.rs +0 -3212
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Snmp/mod.rs +0 -381
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WNet/mod.rs +0 -363
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WebDav/mod.rs +0 -47
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WiFi/mod.rs +0 -4311
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WindowsConnectionManager/mod.rs +0 -119
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs +0 -3818
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs +0 -281
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WindowsNetworkVirtualization/mod.rs +0 -104
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/mod.rs +0 -42
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/ActiveDirectory/mod.rs +0 -2383
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/Clustering/mod.rs +0 -3900
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/HttpServer/mod.rs +0 -1239
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/Ldap/mod.rs +0 -817
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/WebSocket/mod.rs +0 -88
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/WinHttp/mod.rs +0 -1109
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/WinInet/mod.rs +0 -2168
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/WinSock/mod.rs +0 -4786
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/WindowsWebServices/mod.rs +0 -3480
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/mod.rs +0 -18
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/AppLocker/mod.rs +0 -172
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Authentication/Identity/mod.rs +0 -5701
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Authentication/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Authorization/mod.rs +0 -984
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Credentials/mod.rs +0 -797
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Cryptography/Catalog/mod.rs +0 -151
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Cryptography/Certificates/mod.rs +0 -2315
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Cryptography/Sip/mod.rs +0 -155
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Cryptography/UI/mod.rs +0 -545
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Cryptography/mod.rs +0 -8528
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs +0 -156
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/DirectoryServices/mod.rs +0 -19
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/EnterpriseData/mod.rs +0 -36
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/ExtensibleAuthenticationProtocol/mod.rs +0 -998
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Isolation/mod.rs +0 -20
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/LicenseProtection/mod.rs +0 -8
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/NetworkAccessProtection/mod.rs +0 -149
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/WinTrust/mod.rs +0 -863
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/WinWlx/mod.rs +0 -335
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/mod.rs +0 -1156
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Cabinets/mod.rs +0 -209
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/CloudFilters/mod.rs +0 -666
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Compression/mod.rs +0 -36
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/DistributedFileSystem/mod.rs +0 -342
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/FileHistory/mod.rs +0 -97
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/FileSystem/mod.rs +0 -3699
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Imapi/mod.rs +0 -697
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/IndexServer/mod.rs +0 -279
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/InstallableFileSystems/mod.rs +0 -331
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/IscsiDisc/mod.rs +0 -1291
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Jet/mod.rs +0 -2593
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Nvme/mod.rs +0 -3428
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/OfflineFiles/mod.rs +0 -276
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/OperationRecorder/mod.rs +0 -20
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Packaging/Appx/mod.rs +0 -377
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Packaging/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs +0 -246
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/StructuredStorage/mod.rs +0 -3
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Vhd/mod.rs +0 -720
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Xps/mod.rs +0 -415
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/mod.rs +0 -38
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/AddressBook/mod.rs +0 -938
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Antimalware/mod.rs +0 -112
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ApplicationInstallationAndServicing/mod.rs +0 -2145
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ApplicationVerifier/mod.rs +0 -58
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ClrHosting/mod.rs +0 -322
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Com/Marshal/mod.rs +0 -172
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Com/StructuredStorage/mod.rs +0 -655
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Com/Urlmon/mod.rs +0 -905
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Com/mod.rs +0 -1227
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ComponentServices/mod.rs +0 -574
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Console/mod.rs +0 -373
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/CorrelationVector/mod.rs +0 -15
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/DataExchange/mod.rs +0 -428
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/DeploymentServices/mod.rs +0 -565
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/DeveloperLicensing/mod.rs +0 -3
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/Ceip/mod.rs +0 -1
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/Debug/Extensions/mod.rs +0 -3710
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/Debug/mod.rs +0 -5557
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/Etw/mod.rs +0 -2042
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs +0 -293
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/ToolHelp/mod.rs +0 -119
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/TraceLogging/mod.rs +0 -105
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/mod.rs +0 -12
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/DistributedTransactionCoordinator/mod.rs +0 -308
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Environment/mod.rs +0 -202
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ErrorReporting/mod.rs +0 -393
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/EventCollector/mod.rs +0 -117
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/EventLog/mod.rs +0 -379
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/EventNotificationService/mod.rs +0 -35
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/GroupPolicy/mod.rs +0 -424
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/HostCompute/mod.rs +0 -1
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/HostComputeNetwork/mod.rs +0 -86
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/HostComputeSystem/mod.rs +0 -171
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Hypervisor/mod.rs +0 -1983
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/IO/mod.rs +0 -53
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Iis/mod.rs +0 -1411
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Ioctl/mod.rs +0 -6216
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/JobObjects/mod.rs +0 -434
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Js/mod.rs +0 -154
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Kernel/mod.rs +0 -295
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/LibraryLoader/mod.rs +0 -106
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Mailslots/mod.rs +0 -6
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Mapi/mod.rs +0 -150
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Memory/NonVolatile/mod.rs +0 -20
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Memory/mod.rs +0 -464
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/MessageQueuing/mod.rs +0 -712
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/MixedReality/mod.rs +0 -14
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Ole/mod.rs +0 -2599
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/PasswordManagement/mod.rs +0 -22
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Performance/HardwareCounterProfiling/mod.rs +0 -27
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Performance/mod.rs +0 -1091
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Pipes/mod.rs +0 -42
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Power/mod.rs +0 -1413
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ProcessStatus/mod.rs +0 -200
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Recovery/mod.rs +0 -15
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Registry/mod.rs +0 -1114
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/RemoteDesktop/mod.rs +0 -1771
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/RemoteManagement/mod.rs +0 -935
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/RestartManager/mod.rs +0 -86
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Restore/mod.rs +0 -66
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Rpc/mod.rs +0 -2668
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Search/Common/mod.rs +0 -21
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Search/mod.rs +0 -5993
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/SecurityCenter/mod.rs +0 -41
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Services/mod.rs +0 -587
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/SetupAndMigration/mod.rs +0 -4
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Shutdown/mod.rs +0 -111
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/StationsAndDesktops/mod.rs +0 -99
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/SubsystemForLinux/mod.rs +0 -12
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/SystemInformation/mod.rs +0 -751
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/SystemServices/mod.rs +0 -4541
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Threading/mod.rs +0 -1148
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Time/mod.rs +0 -50
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/TpmBaseServices/mod.rs +0 -89
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/UserAccessLogging/mod.rs +0 -17
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Variant/mod.rs +0 -321
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/VirtualDosMachines/mod.rs +0 -297
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/WindowsProgramming/mod.rs +0 -1633
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Wmi/mod.rs +0 -2435
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/mod.rs +0 -132
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Accessibility/mod.rs +0 -1788
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/ColorSystem/mod.rs +0 -702
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Controls/Dialogs/mod.rs +0 -1128
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Controls/mod.rs +0 -7276
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/HiDpi/mod.rs +0 -66
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/Ime/mod.rs +0 -1394
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs +0 -765
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/Pointer/mod.rs +0 -168
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/Touch/mod.rs +0 -89
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/XboxController/mod.rs +0 -151
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/mod.rs +0 -182
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/InteractionContext/mod.rs +0 -230
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Magnification/mod.rs +0 -52
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Shell/Common/mod.rs +0 -104
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Shell/PropertiesSystem/mod.rs +0 -322
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Shell/mod.rs +0 -6704
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/TabletPC/mod.rs +0 -1537
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/TextServices/mod.rs +0 -794
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs +0 -3760
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/mod.rs +0 -22
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Web/InternetExplorer/mod.rs +0 -628
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Web/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/mod.rs +0 -30
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/mod.rs +0 -4
- data/ext/cargo-vendor/windows-sys-0.59.0/src/core/literals.rs +0 -114
- data/ext/cargo-vendor/windows-sys-0.59.0/src/core/mod.rs +0 -33
- data/ext/cargo-vendor/windows-sys-0.59.0/src/includes/Win32/UI/WindowsAndMessaging/WindowLong.rs +0 -8
- data/ext/cargo-vendor/windows-sys-0.59.0/src/lib.rs +0 -17
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/.github/workflows/audit.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/.github/workflows/ci.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/.github/workflows/dotslash-config.json +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/.rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/.rusty-hook.toml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/dev/run_benchmarks_for_file.sh +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/cache/mod.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/cache/noop.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/file_owner_finder.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/mapper/directory_mapper.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/mapper/escaper.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/mapper/team_gem_mapper.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/mapper/team_glob_mapper.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/mapper/team_yml_mapper.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/cache_test.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/.github/CODEOWNERS +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/config/code_ownership.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/config/teams/payments.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/config/teams/payroll.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/gems/payroll_calculator/calculator.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/models/bank_account.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/models/blockchain.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/models/payroll.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/payments/nacha.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/services/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/services/multi_owned.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/unowned.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/packages/payroll_flow/package.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/.github/CODEOWNERS +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/consumers/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/consumers/deep/nesting/nestdir/deep_file.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/consumers/one_owner.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/services/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/services/exciting/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/services/exciting/some_other_file.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/config/teams/bar.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/config/teams/foo.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/.ignore +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/config/teams/payments.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/config/teams/payroll.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/config/teams/ux.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/gems/payroll_calculator/calculator.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/gems/pets/dog.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/PayrollFlow/index.tsx +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/PayrollFlow/package.json +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/items/(special)/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/items/(special)/pay.ts +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/items/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/items/item.ts +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/models/bank_account.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/payments/foo/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/payments/foo/ownedby_payroll.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/payments/nacha.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/payroll/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/payroll/payroll.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/ignored_files/git_ignored.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/packages/payroll_flow/package.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/should_be_ignored/an_ignored_file.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7/tmp/.gitkeep → codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/games/app/services/stats.rb} +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/git_stage_test.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/invalid_project_structure_test.rs +0 -0
- /data/ext/cargo-vendor/{glob-0.3.2 → glob-0.3.3}/.github/dependabot.yml +0 -0
- /data/ext/cargo-vendor/{glob-0.3.2 → glob-0.3.3}/.github/workflows/publish.yml +0 -0
- /data/ext/cargo-vendor/{glob-0.3.2 → glob-0.3.3}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{glob-0.3.2 → glob-0.3.3}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{glob-0.3.2 → glob-0.3.3}/triagebot.toml +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/.rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/README.md +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/benches/bench.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/benches/faststring.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/arbitrary.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/borsh.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/map/core/extract.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/map/core/raw_entry_v1.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/map/iter.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/map/serde_seq.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/rayon/mod.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/set/iter.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/util.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/tests/equivalent_trait.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/tests/macros_full_path.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/tests/tests.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/cannot_collect_filtermap_data.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/cannot_zip_filtered_data.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/cell_par_iter.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/mod.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/must_use.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/no_send_par_iter.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/rc_par_iter.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/delegate.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/collect/consumer.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/extend.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/find.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/for_each.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/noop.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/plumbing/README.md +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/product.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/reduce.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/sum.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/try_reduce.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/try_reduce_with.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/par_either.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/prelude.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/private.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/split_producer.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/string.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/chars.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/cross-pool.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/drain_vec.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/intersperse.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/issue671-unzip.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/issue671.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/iter_panic.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/octillion.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/par_bridge_recursion.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/broadcast/test.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/mod.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/quicksort_race1.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/quicksort_race2.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/quicksort_race3.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/rc_return.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/rc_upvar.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/scope_join_bad.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/job.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/private.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/double_init_fail.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/init_zero_threads.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/scope_join.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/scoped_threadpool.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/simple_panic.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/stack_overflow_crash.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/README.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/de.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/io/core.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/bhcomp.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/bignum.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/cached.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/cached_float80.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/digit.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/errors.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/large_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/large_powers32.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/large_powers64.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/shift.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/small_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/number.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/read.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/value/from.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/value/index.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/value/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/value/partial_eq.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/value/ser.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/debug.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression/issue1004.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression/issue520.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression/issue795.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression/issue845.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression/issue953.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/stream.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_comma.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_value.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_value.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/not_found.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/not_found.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/parse_expr.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/parse_expr.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/parse_key.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/parse_key.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_after_array_element.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_after_array_element.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_after_map_entry.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_after_map_entry.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_comma.stderr +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/.github/dependabot.yml +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/README.md +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/deny.toml +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/dir/imp/any.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/dir/imp/mod.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/dir/imp/unix.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/dir/mod.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/env.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/file/imp/mod.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/file/imp/other.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/file/imp/unix.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/file/imp/windows.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/file/mod.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/spooled.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/util.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/tests/env.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/tests/namedtempfile.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/tests/spooled.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/tests/tempdir.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/tests/tempfile.rs +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/.github/workflows/ci.yml +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/COPYING +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/README.md +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/UNLICENSE +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/src/console.rs +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/src/sysinfo.rs +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/src/win.rs +0 -0
@@ -1,3969 +0,0 @@
|
|
1
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CMP_WaitNoPendingInstallEvents(dwtimeout : u32) -> u32);
|
2
|
-
#[cfg(feature = "Win32_Data_HtmlHelp")]
|
3
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Add_Empty_Log_Conf(plclogconf : *mut usize, dndevinst : u32, priority : super::super::Data::HtmlHelp:: PRIORITY, ulflags : u32) -> CONFIGRET);
|
4
|
-
#[cfg(feature = "Win32_Data_HtmlHelp")]
|
5
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Add_Empty_Log_Conf_Ex(plclogconf : *mut usize, dndevinst : u32, priority : super::super::Data::HtmlHelp:: PRIORITY, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
6
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Add_IDA(dndevinst : u32, pszid : windows_sys::core::PCSTR, ulflags : u32) -> CONFIGRET);
|
7
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Add_IDW(dndevinst : u32, pszid : windows_sys::core::PCWSTR, ulflags : u32) -> CONFIGRET);
|
8
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Add_ID_ExA(dndevinst : u32, pszid : windows_sys::core::PCSTR, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
9
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Add_ID_ExW(dndevinst : u32, pszid : windows_sys::core::PCWSTR, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
10
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Add_Range(ullstartvalue : u64, ullendvalue : u64, rlh : usize, ulflags : u32) -> CONFIGRET);
|
11
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Add_Res_Des(prdresdes : *mut usize, lclogconf : usize, resourceid : u32, resourcedata : *const core::ffi::c_void, resourcelen : u32, ulflags : u32) -> CONFIGRET);
|
12
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Add_Res_Des_Ex(prdresdes : *mut usize, lclogconf : usize, resourceid : u32, resourcedata : *const core::ffi::c_void, resourcelen : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
13
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Connect_MachineA(uncservername : windows_sys::core::PCSTR, phmachine : *mut isize) -> CONFIGRET);
|
14
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Connect_MachineW(uncservername : windows_sys::core::PCWSTR, phmachine : *mut isize) -> CONFIGRET);
|
15
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Create_DevNodeA(pdndevinst : *mut u32, pdeviceid : windows_sys::core::PCSTR, dnparent : u32, ulflags : u32) -> CONFIGRET);
|
16
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Create_DevNodeW(pdndevinst : *mut u32, pdeviceid : windows_sys::core::PCWSTR, dnparent : u32, ulflags : u32) -> CONFIGRET);
|
17
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Create_DevNode_ExA(pdndevinst : *mut u32, pdeviceid : windows_sys::core::PCSTR, dnparent : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
18
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Create_DevNode_ExW(pdndevinst : *mut u32, pdeviceid : windows_sys::core::PCWSTR, dnparent : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
19
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Create_Range_List(prlh : *mut usize, ulflags : u32) -> CONFIGRET);
|
20
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Delete_Class_Key(classguid : *const windows_sys::core::GUID, ulflags : u32) -> CONFIGRET);
|
21
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Delete_Class_Key_Ex(classguid : *const windows_sys::core::GUID, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
22
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Delete_DevNode_Key(dndevnode : u32, ulhardwareprofile : u32, ulflags : u32) -> CONFIGRET);
|
23
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Delete_DevNode_Key_Ex(dndevnode : u32, ulhardwareprofile : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
24
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Delete_Device_Interface_KeyA(pszdeviceinterface : windows_sys::core::PCSTR, ulflags : u32) -> CONFIGRET);
|
25
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Delete_Device_Interface_KeyW(pszdeviceinterface : windows_sys::core::PCWSTR, ulflags : u32) -> CONFIGRET);
|
26
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Delete_Device_Interface_Key_ExA(pszdeviceinterface : windows_sys::core::PCSTR, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
27
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Delete_Device_Interface_Key_ExW(pszdeviceinterface : windows_sys::core::PCWSTR, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
28
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Delete_Range(ullstartvalue : u64, ullendvalue : u64, rlh : usize, ulflags : u32) -> CONFIGRET);
|
29
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Detect_Resource_Conflict(dndevinst : u32, resourceid : u32, resourcedata : *const core::ffi::c_void, resourcelen : u32, pbconflictdetected : *mut super::super::Foundation:: BOOL, ulflags : u32) -> CONFIGRET);
|
30
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Detect_Resource_Conflict_Ex(dndevinst : u32, resourceid : u32, resourcedata : *const core::ffi::c_void, resourcelen : u32, pbconflictdetected : *mut super::super::Foundation:: BOOL, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
31
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Disable_DevNode(dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
32
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Disable_DevNode_Ex(dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
33
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Disconnect_Machine(hmachine : isize) -> CONFIGRET);
|
34
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Dup_Range_List(rlhold : usize, rlhnew : usize, ulflags : u32) -> CONFIGRET);
|
35
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Enable_DevNode(dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
36
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Enable_DevNode_Ex(dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
37
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Enumerate_Classes(ulclassindex : u32, classguid : *mut windows_sys::core::GUID, ulflags : CM_ENUMERATE_FLAGS) -> CONFIGRET);
|
38
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Enumerate_Classes_Ex(ulclassindex : u32, classguid : *mut windows_sys::core::GUID, ulflags : CM_ENUMERATE_FLAGS, hmachine : isize) -> CONFIGRET);
|
39
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Enumerate_EnumeratorsA(ulenumindex : u32, buffer : windows_sys::core::PSTR, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
40
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Enumerate_EnumeratorsW(ulenumindex : u32, buffer : windows_sys::core::PWSTR, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
41
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Enumerate_Enumerators_ExA(ulenumindex : u32, buffer : windows_sys::core::PSTR, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
42
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Enumerate_Enumerators_ExW(ulenumindex : u32, buffer : windows_sys::core::PWSTR, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
43
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Find_Range(pullstart : *mut u64, ullstart : u64, ullength : u32, ullalignment : u64, ullend : u64, rlh : usize, ulflags : u32) -> CONFIGRET);
|
44
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_First_Range(rlh : usize, pullstart : *mut u64, pullend : *mut u64, preelement : *mut usize, ulflags : u32) -> CONFIGRET);
|
45
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Free_Log_Conf(lclogconftobefreed : usize, ulflags : u32) -> CONFIGRET);
|
46
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Free_Log_Conf_Ex(lclogconftobefreed : usize, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
47
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Free_Log_Conf_Handle(lclogconf : usize) -> CONFIGRET);
|
48
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Free_Range_List(rlh : usize, ulflags : u32) -> CONFIGRET);
|
49
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Free_Res_Des(prdresdes : *mut usize, rdresdes : usize, ulflags : u32) -> CONFIGRET);
|
50
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Free_Res_Des_Ex(prdresdes : *mut usize, rdresdes : usize, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
51
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Free_Res_Des_Handle(rdresdes : usize) -> CONFIGRET);
|
52
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Free_Resource_Conflict_Handle(clconflictlist : usize) -> CONFIGRET);
|
53
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Child(pdndevinst : *mut u32, dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
54
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Child_Ex(pdndevinst : *mut u32, dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
55
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Key_NameA(classguid : *const windows_sys::core::GUID, pszkeyname : windows_sys::core::PSTR, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
56
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Key_NameW(classguid : *const windows_sys::core::GUID, pszkeyname : windows_sys::core::PWSTR, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
57
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Key_Name_ExA(classguid : *const windows_sys::core::GUID, pszkeyname : windows_sys::core::PSTR, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
58
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Key_Name_ExW(classguid : *const windows_sys::core::GUID, pszkeyname : windows_sys::core::PWSTR, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
59
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_NameA(classguid : *const windows_sys::core::GUID, buffer : windows_sys::core::PSTR, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
60
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_NameW(classguid : *const windows_sys::core::GUID, buffer : windows_sys::core::PWSTR, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
61
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Name_ExA(classguid : *const windows_sys::core::GUID, buffer : windows_sys::core::PSTR, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
62
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Name_ExW(classguid : *const windows_sys::core::GUID, buffer : windows_sys::core::PWSTR, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
63
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
64
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_PropertyW(classguid : *const windows_sys::core::GUID, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : *mut super::Properties:: DEVPROPTYPE, propertybuffer : *mut u8, propertybuffersize : *mut u32, ulflags : u32) -> CONFIGRET);
|
65
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
66
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Property_ExW(classguid : *const windows_sys::core::GUID, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : *mut super::Properties:: DEVPROPTYPE, propertybuffer : *mut u8, propertybuffersize : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
67
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
68
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Property_Keys(classguid : *const windows_sys::core::GUID, propertykeyarray : *mut super::Properties:: DEVPROPKEY, propertykeycount : *mut u32, ulflags : u32) -> CONFIGRET);
|
69
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
70
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Property_Keys_Ex(classguid : *const windows_sys::core::GUID, propertykeyarray : *mut super::Properties:: DEVPROPKEY, propertykeycount : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
71
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Registry_PropertyA(classguid : *const windows_sys::core::GUID, ulproperty : u32, pulregdatatype : *mut u32, buffer : *mut core::ffi::c_void, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
72
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Class_Registry_PropertyW(classguid : *const windows_sys::core::GUID, ulproperty : u32, pulregdatatype : *mut u32, buffer : *mut core::ffi::c_void, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
73
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Depth(puldepth : *mut u32, dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
74
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Depth_Ex(puldepth : *mut u32, dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
75
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Custom_PropertyA(dndevinst : u32, pszcustompropertyname : windows_sys::core::PCSTR, pulregdatatype : *mut u32, buffer : *mut core::ffi::c_void, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
76
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Custom_PropertyW(dndevinst : u32, pszcustompropertyname : windows_sys::core::PCWSTR, pulregdatatype : *mut u32, buffer : *mut core::ffi::c_void, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
77
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Custom_Property_ExA(dndevinst : u32, pszcustompropertyname : windows_sys::core::PCSTR, pulregdatatype : *mut u32, buffer : *mut core::ffi::c_void, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
78
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Custom_Property_ExW(dndevinst : u32, pszcustompropertyname : windows_sys::core::PCWSTR, pulregdatatype : *mut u32, buffer : *mut core::ffi::c_void, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
79
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
80
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_PropertyW(dndevinst : u32, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : *mut super::Properties:: DEVPROPTYPE, propertybuffer : *mut u8, propertybuffersize : *mut u32, ulflags : u32) -> CONFIGRET);
|
81
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
82
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Property_ExW(dndevinst : u32, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : *mut super::Properties:: DEVPROPTYPE, propertybuffer : *mut u8, propertybuffersize : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
83
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
84
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Property_Keys(dndevinst : u32, propertykeyarray : *mut super::Properties:: DEVPROPKEY, propertykeycount : *mut u32, ulflags : u32) -> CONFIGRET);
|
85
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
86
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Property_Keys_Ex(dndevinst : u32, propertykeyarray : *mut super::Properties:: DEVPROPKEY, propertykeycount : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
87
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Registry_PropertyA(dndevinst : u32, ulproperty : u32, pulregdatatype : *mut u32, buffer : *mut core::ffi::c_void, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
88
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Registry_PropertyW(dndevinst : u32, ulproperty : u32, pulregdatatype : *mut u32, buffer : *mut core::ffi::c_void, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
89
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Registry_Property_ExA(dndevinst : u32, ulproperty : u32, pulregdatatype : *mut u32, buffer : *mut core::ffi::c_void, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
90
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Registry_Property_ExW(dndevinst : u32, ulproperty : u32, pulregdatatype : *mut u32, buffer : *mut core::ffi::c_void, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
91
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Status(pulstatus : *mut CM_DEVNODE_STATUS_FLAGS, pulproblemnumber : *mut CM_PROB, dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
92
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_DevNode_Status_Ex(pulstatus : *mut CM_DEVNODE_STATUS_FLAGS, pulproblemnumber : *mut CM_PROB, dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
93
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_IDA(dndevinst : u32, buffer : windows_sys::core::PSTR, bufferlen : u32, ulflags : u32) -> CONFIGRET);
|
94
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_IDW(dndevinst : u32, buffer : windows_sys::core::PWSTR, bufferlen : u32, ulflags : u32) -> CONFIGRET);
|
95
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_ExA(dndevinst : u32, buffer : windows_sys::core::PSTR, bufferlen : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
96
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_ExW(dndevinst : u32, buffer : windows_sys::core::PWSTR, bufferlen : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
97
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_ListA(pszfilter : windows_sys::core::PCSTR, buffer : windows_sys::core::PSTR, bufferlen : u32, ulflags : u32) -> CONFIGRET);
|
98
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_ListW(pszfilter : windows_sys::core::PCWSTR, buffer : windows_sys::core::PWSTR, bufferlen : u32, ulflags : u32) -> CONFIGRET);
|
99
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_List_ExA(pszfilter : windows_sys::core::PCSTR, buffer : windows_sys::core::PSTR, bufferlen : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
100
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_List_ExW(pszfilter : windows_sys::core::PCWSTR, buffer : windows_sys::core::PWSTR, bufferlen : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
101
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_List_SizeA(pullen : *mut u32, pszfilter : windows_sys::core::PCSTR, ulflags : u32) -> CONFIGRET);
|
102
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_List_SizeW(pullen : *mut u32, pszfilter : windows_sys::core::PCWSTR, ulflags : u32) -> CONFIGRET);
|
103
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_List_Size_ExA(pullen : *mut u32, pszfilter : windows_sys::core::PCSTR, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
104
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_List_Size_ExW(pullen : *mut u32, pszfilter : windows_sys::core::PCWSTR, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
105
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_Size(pullen : *mut u32, dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
106
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_ID_Size_Ex(pullen : *mut u32, dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
107
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_AliasA(pszdeviceinterface : windows_sys::core::PCSTR, aliasinterfaceguid : *const windows_sys::core::GUID, pszaliasdeviceinterface : windows_sys::core::PSTR, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
108
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_AliasW(pszdeviceinterface : windows_sys::core::PCWSTR, aliasinterfaceguid : *const windows_sys::core::GUID, pszaliasdeviceinterface : windows_sys::core::PWSTR, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
109
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_Alias_ExA(pszdeviceinterface : windows_sys::core::PCSTR, aliasinterfaceguid : *const windows_sys::core::GUID, pszaliasdeviceinterface : windows_sys::core::PSTR, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
110
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_Alias_ExW(pszdeviceinterface : windows_sys::core::PCWSTR, aliasinterfaceguid : *const windows_sys::core::GUID, pszaliasdeviceinterface : windows_sys::core::PWSTR, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
111
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_ListA(interfaceclassguid : *const windows_sys::core::GUID, pdeviceid : windows_sys::core::PCSTR, buffer : windows_sys::core::PSTR, bufferlen : u32, ulflags : CM_GET_DEVICE_INTERFACE_LIST_FLAGS) -> CONFIGRET);
|
112
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_ListW(interfaceclassguid : *const windows_sys::core::GUID, pdeviceid : windows_sys::core::PCWSTR, buffer : windows_sys::core::PWSTR, bufferlen : u32, ulflags : CM_GET_DEVICE_INTERFACE_LIST_FLAGS) -> CONFIGRET);
|
113
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_List_ExA(interfaceclassguid : *const windows_sys::core::GUID, pdeviceid : windows_sys::core::PCSTR, buffer : windows_sys::core::PSTR, bufferlen : u32, ulflags : CM_GET_DEVICE_INTERFACE_LIST_FLAGS, hmachine : isize) -> CONFIGRET);
|
114
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_List_ExW(interfaceclassguid : *const windows_sys::core::GUID, pdeviceid : windows_sys::core::PCWSTR, buffer : windows_sys::core::PWSTR, bufferlen : u32, ulflags : CM_GET_DEVICE_INTERFACE_LIST_FLAGS, hmachine : isize) -> CONFIGRET);
|
115
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_List_SizeA(pullen : *mut u32, interfaceclassguid : *const windows_sys::core::GUID, pdeviceid : windows_sys::core::PCSTR, ulflags : CM_GET_DEVICE_INTERFACE_LIST_FLAGS) -> CONFIGRET);
|
116
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_List_SizeW(pullen : *mut u32, interfaceclassguid : *const windows_sys::core::GUID, pdeviceid : windows_sys::core::PCWSTR, ulflags : CM_GET_DEVICE_INTERFACE_LIST_FLAGS) -> CONFIGRET);
|
117
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_List_Size_ExA(pullen : *mut u32, interfaceclassguid : *const windows_sys::core::GUID, pdeviceid : windows_sys::core::PCSTR, ulflags : CM_GET_DEVICE_INTERFACE_LIST_FLAGS, hmachine : isize) -> CONFIGRET);
|
118
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_List_Size_ExW(pullen : *mut u32, interfaceclassguid : *const windows_sys::core::GUID, pdeviceid : windows_sys::core::PCWSTR, ulflags : CM_GET_DEVICE_INTERFACE_LIST_FLAGS, hmachine : isize) -> CONFIGRET);
|
119
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
120
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_PropertyW(pszdeviceinterface : windows_sys::core::PCWSTR, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : *mut super::Properties:: DEVPROPTYPE, propertybuffer : *mut u8, propertybuffersize : *mut u32, ulflags : u32) -> CONFIGRET);
|
121
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
122
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_Property_ExW(pszdeviceinterface : windows_sys::core::PCWSTR, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : *mut super::Properties:: DEVPROPTYPE, propertybuffer : *mut u8, propertybuffersize : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
123
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
124
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_Property_KeysW(pszdeviceinterface : windows_sys::core::PCWSTR, propertykeyarray : *mut super::Properties:: DEVPROPKEY, propertykeycount : *mut u32, ulflags : u32) -> CONFIGRET);
|
125
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
126
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Device_Interface_Property_Keys_ExW(pszdeviceinterface : windows_sys::core::PCWSTR, propertykeyarray : *mut super::Properties:: DEVPROPKEY, propertykeycount : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
127
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_First_Log_Conf(plclogconf : *mut usize, dndevinst : u32, ulflags : CM_LOG_CONF) -> CONFIGRET);
|
128
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_First_Log_Conf_Ex(plclogconf : *mut usize, dndevinst : u32, ulflags : CM_LOG_CONF, hmachine : isize) -> CONFIGRET);
|
129
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Global_State(pulstate : *mut u32, ulflags : u32) -> CONFIGRET);
|
130
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Global_State_Ex(pulstate : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
131
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_HW_Prof_FlagsA(pdeviceid : windows_sys::core::PCSTR, ulhardwareprofile : u32, pulvalue : *mut u32, ulflags : u32) -> CONFIGRET);
|
132
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_HW_Prof_FlagsW(pdeviceid : windows_sys::core::PCWSTR, ulhardwareprofile : u32, pulvalue : *mut u32, ulflags : u32) -> CONFIGRET);
|
133
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_HW_Prof_Flags_ExA(pdeviceid : windows_sys::core::PCSTR, ulhardwareprofile : u32, pulvalue : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
134
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_HW_Prof_Flags_ExW(pdeviceid : windows_sys::core::PCWSTR, ulhardwareprofile : u32, pulvalue : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
135
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Hardware_Profile_InfoA(ulindex : u32, phwprofileinfo : *mut HWPROFILEINFO_A, ulflags : u32) -> CONFIGRET);
|
136
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Hardware_Profile_InfoW(ulindex : u32, phwprofileinfo : *mut HWPROFILEINFO_W, ulflags : u32) -> CONFIGRET);
|
137
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Hardware_Profile_Info_ExA(ulindex : u32, phwprofileinfo : *mut HWPROFILEINFO_A, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
138
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Hardware_Profile_Info_ExW(ulindex : u32, phwprofileinfo : *mut HWPROFILEINFO_W, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
139
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Log_Conf_Priority(lclogconf : usize, ppriority : *mut u32, ulflags : u32) -> CONFIGRET);
|
140
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Log_Conf_Priority_Ex(lclogconf : usize, ppriority : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
141
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Next_Log_Conf(plclogconf : *mut usize, lclogconf : usize, ulflags : u32) -> CONFIGRET);
|
142
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Next_Log_Conf_Ex(plclogconf : *mut usize, lclogconf : usize, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
143
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Next_Res_Des(prdresdes : *mut usize, rdresdes : usize, forresource : CM_RESTYPE, presourceid : *mut CM_RESTYPE, ulflags : u32) -> CONFIGRET);
|
144
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Next_Res_Des_Ex(prdresdes : *mut usize, rdresdes : usize, forresource : CM_RESTYPE, presourceid : *mut CM_RESTYPE, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
145
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Parent(pdndevinst : *mut u32, dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
146
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Parent_Ex(pdndevinst : *mut u32, dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
147
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Res_Des_Data(rdresdes : usize, buffer : *mut core::ffi::c_void, bufferlen : u32, ulflags : u32) -> CONFIGRET);
|
148
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Res_Des_Data_Ex(rdresdes : usize, buffer : *mut core::ffi::c_void, bufferlen : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
149
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Res_Des_Data_Size(pulsize : *mut u32, rdresdes : usize, ulflags : u32) -> CONFIGRET);
|
150
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Res_Des_Data_Size_Ex(pulsize : *mut u32, rdresdes : usize, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
151
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Resource_Conflict_Count(clconflictlist : usize, pulcount : *mut u32) -> CONFIGRET);
|
152
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Resource_Conflict_DetailsA(clconflictlist : usize, ulindex : u32, pconflictdetails : *mut CONFLICT_DETAILS_A) -> CONFIGRET);
|
153
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Resource_Conflict_DetailsW(clconflictlist : usize, ulindex : u32, pconflictdetails : *mut CONFLICT_DETAILS_W) -> CONFIGRET);
|
154
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Sibling(pdndevinst : *mut u32, dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
155
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Sibling_Ex(pdndevinst : *mut u32, dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
156
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Version() -> u16);
|
157
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Get_Version_Ex(hmachine : isize) -> u16);
|
158
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Intersect_Range_List(rlhold1 : usize, rlhold2 : usize, rlhnew : usize, ulflags : u32) -> CONFIGRET);
|
159
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Invert_Range_List(rlhold : usize, rlhnew : usize, ullmaxvalue : u64, ulflags : u32) -> CONFIGRET);
|
160
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Is_Dock_Station_Present(pbpresent : *mut super::super::Foundation:: BOOL) -> CONFIGRET);
|
161
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Is_Dock_Station_Present_Ex(pbpresent : *mut super::super::Foundation:: BOOL, hmachine : isize) -> CONFIGRET);
|
162
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Is_Version_Available(wversion : u16) -> super::super::Foundation:: BOOL);
|
163
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Is_Version_Available_Ex(wversion : u16, hmachine : isize) -> super::super::Foundation:: BOOL);
|
164
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Locate_DevNodeA(pdndevinst : *mut u32, pdeviceid : windows_sys::core::PCSTR, ulflags : CM_LOCATE_DEVNODE_FLAGS) -> CONFIGRET);
|
165
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Locate_DevNodeW(pdndevinst : *mut u32, pdeviceid : windows_sys::core::PCWSTR, ulflags : CM_LOCATE_DEVNODE_FLAGS) -> CONFIGRET);
|
166
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Locate_DevNode_ExA(pdndevinst : *mut u32, pdeviceid : windows_sys::core::PCSTR, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
167
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Locate_DevNode_ExW(pdndevinst : *mut u32, pdeviceid : windows_sys::core::PCWSTR, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
168
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_MapCrToWin32Err(cmreturncode : CONFIGRET, defaulterr : u32) -> u32);
|
169
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Merge_Range_List(rlhold1 : usize, rlhold2 : usize, rlhnew : usize, ulflags : u32) -> CONFIGRET);
|
170
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Modify_Res_Des(prdresdes : *mut usize, rdresdes : usize, resourceid : u32, resourcedata : *const core::ffi::c_void, resourcelen : u32, ulflags : u32) -> CONFIGRET);
|
171
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Modify_Res_Des_Ex(prdresdes : *mut usize, rdresdes : usize, resourceid : u32, resourcedata : *const core::ffi::c_void, resourcelen : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
172
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Move_DevNode(dnfromdevinst : u32, dntodevinst : u32, ulflags : u32) -> CONFIGRET);
|
173
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Move_DevNode_Ex(dnfromdevinst : u32, dntodevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
174
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Next_Range(preelement : *mut usize, pullstart : *mut u64, pullend : *mut u64, ulflags : u32) -> CONFIGRET);
|
175
|
-
#[cfg(feature = "Win32_System_Registry")]
|
176
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Open_Class_KeyA(classguid : *const windows_sys::core::GUID, pszclassname : windows_sys::core::PCSTR, samdesired : u32, disposition : u32, phkclass : *mut super::super::System::Registry:: HKEY, ulflags : u32) -> CONFIGRET);
|
177
|
-
#[cfg(feature = "Win32_System_Registry")]
|
178
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Open_Class_KeyW(classguid : *const windows_sys::core::GUID, pszclassname : windows_sys::core::PCWSTR, samdesired : u32, disposition : u32, phkclass : *mut super::super::System::Registry:: HKEY, ulflags : u32) -> CONFIGRET);
|
179
|
-
#[cfg(feature = "Win32_System_Registry")]
|
180
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Open_Class_Key_ExA(classguid : *const windows_sys::core::GUID, pszclassname : windows_sys::core::PCSTR, samdesired : u32, disposition : u32, phkclass : *mut super::super::System::Registry:: HKEY, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
181
|
-
#[cfg(feature = "Win32_System_Registry")]
|
182
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Open_Class_Key_ExW(classguid : *const windows_sys::core::GUID, pszclassname : windows_sys::core::PCWSTR, samdesired : u32, disposition : u32, phkclass : *mut super::super::System::Registry:: HKEY, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
183
|
-
#[cfg(feature = "Win32_System_Registry")]
|
184
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Open_DevNode_Key(dndevnode : u32, samdesired : u32, ulhardwareprofile : u32, disposition : u32, phkdevice : *mut super::super::System::Registry:: HKEY, ulflags : u32) -> CONFIGRET);
|
185
|
-
#[cfg(feature = "Win32_System_Registry")]
|
186
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Open_DevNode_Key_Ex(dndevnode : u32, samdesired : u32, ulhardwareprofile : u32, disposition : u32, phkdevice : *mut super::super::System::Registry:: HKEY, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
187
|
-
#[cfg(feature = "Win32_System_Registry")]
|
188
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Open_Device_Interface_KeyA(pszdeviceinterface : windows_sys::core::PCSTR, samdesired : u32, disposition : u32, phkdeviceinterface : *mut super::super::System::Registry:: HKEY, ulflags : u32) -> CONFIGRET);
|
189
|
-
#[cfg(feature = "Win32_System_Registry")]
|
190
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Open_Device_Interface_KeyW(pszdeviceinterface : windows_sys::core::PCWSTR, samdesired : u32, disposition : u32, phkdeviceinterface : *mut super::super::System::Registry:: HKEY, ulflags : u32) -> CONFIGRET);
|
191
|
-
#[cfg(feature = "Win32_System_Registry")]
|
192
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Open_Device_Interface_Key_ExA(pszdeviceinterface : windows_sys::core::PCSTR, samdesired : u32, disposition : u32, phkdeviceinterface : *mut super::super::System::Registry:: HKEY, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
193
|
-
#[cfg(feature = "Win32_System_Registry")]
|
194
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Open_Device_Interface_Key_ExW(pszdeviceinterface : windows_sys::core::PCWSTR, samdesired : u32, disposition : u32, phkdeviceinterface : *mut super::super::System::Registry:: HKEY, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
195
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_And_Remove_SubTreeA(dnancestor : u32, pvetotype : *mut PNP_VETO_TYPE, pszvetoname : windows_sys::core::PSTR, ulnamelength : u32, ulflags : u32) -> CONFIGRET);
|
196
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_And_Remove_SubTreeW(dnancestor : u32, pvetotype : *mut PNP_VETO_TYPE, pszvetoname : windows_sys::core::PWSTR, ulnamelength : u32, ulflags : u32) -> CONFIGRET);
|
197
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_And_Remove_SubTree_ExA(dnancestor : u32, pvetotype : *mut PNP_VETO_TYPE, pszvetoname : windows_sys::core::PSTR, ulnamelength : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
198
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_And_Remove_SubTree_ExW(dnancestor : u32, pvetotype : *mut PNP_VETO_TYPE, pszvetoname : windows_sys::core::PWSTR, ulnamelength : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
199
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_Arbitrator_Free_Data(pdata : *mut core::ffi::c_void, datalen : u32, dndevinst : u32, resourceid : u32, ulflags : u32) -> CONFIGRET);
|
200
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_Arbitrator_Free_Data_Ex(pdata : *mut core::ffi::c_void, datalen : u32, dndevinst : u32, resourceid : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
201
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_Arbitrator_Free_Size(pulsize : *mut u32, dndevinst : u32, resourceid : u32, ulflags : u32) -> CONFIGRET);
|
202
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_Arbitrator_Free_Size_Ex(pulsize : *mut u32, dndevinst : u32, resourceid : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
203
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_Remove_SubTree(dnancestor : u32, ulflags : u32) -> CONFIGRET);
|
204
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_Remove_SubTree_Ex(dnancestor : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
205
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Query_Resource_Conflict_List(pclconflictlist : *mut usize, dndevinst : u32, resourceid : CM_RESTYPE, resourcedata : *const core::ffi::c_void, resourcelen : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
206
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Reenumerate_DevNode(dndevinst : u32, ulflags : CM_REENUMERATE_FLAGS) -> CONFIGRET);
|
207
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Reenumerate_DevNode_Ex(dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
208
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Register_Device_Driver(dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
209
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Register_Device_Driver_Ex(dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
210
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Register_Device_InterfaceA(dndevinst : u32, interfaceclassguid : *const windows_sys::core::GUID, pszreference : windows_sys::core::PCSTR, pszdeviceinterface : windows_sys::core::PSTR, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
211
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Register_Device_InterfaceW(dndevinst : u32, interfaceclassguid : *const windows_sys::core::GUID, pszreference : windows_sys::core::PCWSTR, pszdeviceinterface : windows_sys::core::PWSTR, pullength : *mut u32, ulflags : u32) -> CONFIGRET);
|
212
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Register_Device_Interface_ExA(dndevinst : u32, interfaceclassguid : *const windows_sys::core::GUID, pszreference : windows_sys::core::PCSTR, pszdeviceinterface : windows_sys::core::PSTR, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
213
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Register_Device_Interface_ExW(dndevinst : u32, interfaceclassguid : *const windows_sys::core::GUID, pszreference : windows_sys::core::PCWSTR, pszdeviceinterface : windows_sys::core::PWSTR, pullength : *mut u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
214
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Register_Notification(pfilter : *const CM_NOTIFY_FILTER, pcontext : *const core::ffi::c_void, pcallback : PCM_NOTIFY_CALLBACK, pnotifycontext : *mut HCMNOTIFICATION) -> CONFIGRET);
|
215
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Remove_SubTree(dnancestor : u32, ulflags : u32) -> CONFIGRET);
|
216
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Remove_SubTree_Ex(dnancestor : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
217
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Request_Device_EjectA(dndevinst : u32, pvetotype : *mut PNP_VETO_TYPE, pszvetoname : windows_sys::core::PSTR, ulnamelength : u32, ulflags : u32) -> CONFIGRET);
|
218
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Request_Device_EjectW(dndevinst : u32, pvetotype : *mut PNP_VETO_TYPE, pszvetoname : windows_sys::core::PWSTR, ulnamelength : u32, ulflags : u32) -> CONFIGRET);
|
219
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Request_Device_Eject_ExA(dndevinst : u32, pvetotype : *mut PNP_VETO_TYPE, pszvetoname : windows_sys::core::PSTR, ulnamelength : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
220
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Request_Device_Eject_ExW(dndevinst : u32, pvetotype : *mut PNP_VETO_TYPE, pszvetoname : windows_sys::core::PWSTR, ulnamelength : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
221
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Request_Eject_PC() -> CONFIGRET);
|
222
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Request_Eject_PC_Ex(hmachine : isize) -> CONFIGRET);
|
223
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Run_Detection(ulflags : u32) -> CONFIGRET);
|
224
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Run_Detection_Ex(ulflags : u32, hmachine : isize) -> CONFIGRET);
|
225
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
226
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_Class_PropertyW(classguid : *const windows_sys::core::GUID, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : super::Properties:: DEVPROPTYPE, propertybuffer : *const u8, propertybuffersize : u32, ulflags : u32) -> CONFIGRET);
|
227
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
228
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_Class_Property_ExW(classguid : *const windows_sys::core::GUID, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : super::Properties:: DEVPROPTYPE, propertybuffer : *const u8, propertybuffersize : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
229
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_Class_Registry_PropertyA(classguid : *const windows_sys::core::GUID, ulproperty : u32, buffer : *const core::ffi::c_void, ullength : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
230
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_Class_Registry_PropertyW(classguid : *const windows_sys::core::GUID, ulproperty : u32, buffer : *const core::ffi::c_void, ullength : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
231
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_DevNode_Problem(dndevinst : u32, ulproblem : u32, ulflags : u32) -> CONFIGRET);
|
232
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_DevNode_Problem_Ex(dndevinst : u32, ulproblem : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
233
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
234
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_DevNode_PropertyW(dndevinst : u32, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : super::Properties:: DEVPROPTYPE, propertybuffer : *const u8, propertybuffersize : u32, ulflags : u32) -> CONFIGRET);
|
235
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
236
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_DevNode_Property_ExW(dndevinst : u32, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : super::Properties:: DEVPROPTYPE, propertybuffer : *const u8, propertybuffersize : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
237
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_DevNode_Registry_PropertyA(dndevinst : u32, ulproperty : u32, buffer : *const core::ffi::c_void, ullength : u32, ulflags : u32) -> CONFIGRET);
|
238
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_DevNode_Registry_PropertyW(dndevinst : u32, ulproperty : u32, buffer : *const core::ffi::c_void, ullength : u32, ulflags : u32) -> CONFIGRET);
|
239
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_DevNode_Registry_Property_ExA(dndevinst : u32, ulproperty : u32, buffer : *const core::ffi::c_void, ullength : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
240
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_DevNode_Registry_Property_ExW(dndevinst : u32, ulproperty : u32, buffer : *const core::ffi::c_void, ullength : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
241
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
242
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_Device_Interface_PropertyW(pszdeviceinterface : windows_sys::core::PCWSTR, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : super::Properties:: DEVPROPTYPE, propertybuffer : *const u8, propertybuffersize : u32, ulflags : u32) -> CONFIGRET);
|
243
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
244
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_Device_Interface_Property_ExW(pszdeviceinterface : windows_sys::core::PCWSTR, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : super::Properties:: DEVPROPTYPE, propertybuffer : *const u8, propertybuffersize : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
245
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_HW_Prof(ulhardwareprofile : u32, ulflags : u32) -> CONFIGRET);
|
246
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_HW_Prof_Ex(ulhardwareprofile : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
247
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_HW_Prof_FlagsA(pdeviceid : windows_sys::core::PCSTR, ulconfig : u32, ulvalue : u32, ulflags : u32) -> CONFIGRET);
|
248
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_HW_Prof_FlagsW(pdeviceid : windows_sys::core::PCWSTR, ulconfig : u32, ulvalue : u32, ulflags : u32) -> CONFIGRET);
|
249
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_HW_Prof_Flags_ExA(pdeviceid : windows_sys::core::PCSTR, ulconfig : u32, ulvalue : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
250
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Set_HW_Prof_Flags_ExW(pdeviceid : windows_sys::core::PCWSTR, ulconfig : u32, ulvalue : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
251
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Setup_DevNode(dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
252
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Setup_DevNode_Ex(dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
253
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Test_Range_Available(ullstartvalue : u64, ullendvalue : u64, rlh : usize, ulflags : u32) -> CONFIGRET);
|
254
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Uninstall_DevNode(dndevinst : u32, ulflags : u32) -> CONFIGRET);
|
255
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Uninstall_DevNode_Ex(dndevinst : u32, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
256
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Unregister_Device_InterfaceA(pszdeviceinterface : windows_sys::core::PCSTR, ulflags : u32) -> CONFIGRET);
|
257
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Unregister_Device_InterfaceW(pszdeviceinterface : windows_sys::core::PCWSTR, ulflags : u32) -> CONFIGRET);
|
258
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Unregister_Device_Interface_ExA(pszdeviceinterface : windows_sys::core::PCSTR, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
259
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Unregister_Device_Interface_ExW(pszdeviceinterface : windows_sys::core::PCWSTR, ulflags : u32, hmachine : isize) -> CONFIGRET);
|
260
|
-
windows_targets::link!("cfgmgr32.dll" "system" fn CM_Unregister_Notification(notifycontext : HCMNOTIFICATION) -> CONFIGRET);
|
261
|
-
windows_targets::link!("newdev.dll" "system" fn DiInstallDevice(hwndparent : super::super::Foundation:: HWND, deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, driverinfodata : *const SP_DRVINFO_DATA_V2_W, flags : DIINSTALLDEVICE_FLAGS, needreboot : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
262
|
-
windows_targets::link!("newdev.dll" "system" fn DiInstallDriverA(hwndparent : super::super::Foundation:: HWND, infpath : windows_sys::core::PCSTR, flags : DIINSTALLDRIVER_FLAGS, needreboot : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
263
|
-
windows_targets::link!("newdev.dll" "system" fn DiInstallDriverW(hwndparent : super::super::Foundation:: HWND, infpath : windows_sys::core::PCWSTR, flags : DIINSTALLDRIVER_FLAGS, needreboot : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
264
|
-
windows_targets::link!("newdev.dll" "system" fn DiRollbackDriver(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, hwndparent : super::super::Foundation:: HWND, flags : DIROLLBACKDRIVER_FLAGS, needreboot : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
265
|
-
windows_targets::link!("newdev.dll" "system" fn DiShowUpdateDevice(hwndparent : super::super::Foundation:: HWND, deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, flags : u32, needreboot : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
266
|
-
windows_targets::link!("newdev.dll" "system" fn DiShowUpdateDriver(hwndparent : super::super::Foundation:: HWND, filepath : windows_sys::core::PCWSTR, flags : u32, needreboot : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
267
|
-
windows_targets::link!("newdev.dll" "system" fn DiUninstallDevice(hwndparent : super::super::Foundation:: HWND, deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, flags : u32, needreboot : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
268
|
-
windows_targets::link!("newdev.dll" "system" fn DiUninstallDriverA(hwndparent : super::super::Foundation:: HWND, infpath : windows_sys::core::PCSTR, flags : DIUNINSTALLDRIVER_FLAGS, needreboot : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
269
|
-
windows_targets::link!("newdev.dll" "system" fn DiUninstallDriverW(hwndparent : super::super::Foundation:: HWND, infpath : windows_sys::core::PCWSTR, flags : DIUNINSTALLDRIVER_FLAGS, needreboot : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
270
|
-
windows_targets::link!("setupapi.dll" "system" fn InstallHinfSectionA(window : super::super::Foundation:: HWND, modulehandle : super::super::Foundation:: HINSTANCE, commandline : windows_sys::core::PCSTR, showcommand : i32));
|
271
|
-
windows_targets::link!("setupapi.dll" "system" fn InstallHinfSectionW(window : super::super::Foundation:: HWND, modulehandle : super::super::Foundation:: HINSTANCE, commandline : windows_sys::core::PCWSTR, showcommand : i32));
|
272
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupAddInstallSectionToDiskSpaceListA(diskspace : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, layoutinfhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCSTR, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
273
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupAddInstallSectionToDiskSpaceListW(diskspace : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, layoutinfhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCWSTR, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
274
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupAddSectionToDiskSpaceListA(diskspace : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, listinfhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCSTR, operation : SETUP_FILE_OPERATION, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
275
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupAddSectionToDiskSpaceListW(diskspace : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, listinfhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCWSTR, operation : SETUP_FILE_OPERATION, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
276
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupAddToDiskSpaceListA(diskspace : *const core::ffi::c_void, targetfilespec : windows_sys::core::PCSTR, filesize : i64, operation : SETUP_FILE_OPERATION, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
277
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupAddToDiskSpaceListW(diskspace : *const core::ffi::c_void, targetfilespec : windows_sys::core::PCWSTR, filesize : i64, operation : SETUP_FILE_OPERATION, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
278
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupAddToSourceListA(flags : u32, source : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL);
|
279
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupAddToSourceListW(flags : u32, source : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL);
|
280
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupAdjustDiskSpaceListA(diskspace : *const core::ffi::c_void, driveroot : windows_sys::core::PCSTR, amount : i64, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
281
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupAdjustDiskSpaceListW(diskspace : *const core::ffi::c_void, driveroot : windows_sys::core::PCWSTR, amount : i64, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
282
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupBackupErrorA(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCSTR, sourcefile : windows_sys::core::PCSTR, targetfile : windows_sys::core::PCSTR, win32errorcode : u32, style : u32) -> u32);
|
283
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupBackupErrorW(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCWSTR, sourcefile : windows_sys::core::PCWSTR, targetfile : windows_sys::core::PCWSTR, win32errorcode : u32, style : u32) -> u32);
|
284
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCancelTemporarySourceList() -> super::super::Foundation:: BOOL);
|
285
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCloseFileQueue(queuehandle : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
286
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCloseInfFile(infhandle : *const core::ffi::c_void));
|
287
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCloseLog());
|
288
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCommitFileQueueA(owner : super::super::Foundation:: HWND, queuehandle : *const core::ffi::c_void, msghandler : PSP_FILE_CALLBACK_A, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
289
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCommitFileQueueW(owner : super::super::Foundation:: HWND, queuehandle : *const core::ffi::c_void, msghandler : PSP_FILE_CALLBACK_W, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
290
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupConfigureWmiFromInfSectionA(infhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCSTR, flags : u32) -> super::super::Foundation:: BOOL);
|
291
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupConfigureWmiFromInfSectionW(infhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCWSTR, flags : u32) -> super::super::Foundation:: BOOL);
|
292
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCopyErrorA(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCSTR, diskname : windows_sys::core::PCSTR, pathtosource : windows_sys::core::PCSTR, sourcefile : windows_sys::core::PCSTR, targetpathfile : windows_sys::core::PCSTR, win32errorcode : u32, style : u32, pathbuffer : windows_sys::core::PSTR, pathbuffersize : u32, pathrequiredsize : *mut u32) -> u32);
|
293
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCopyErrorW(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCWSTR, diskname : windows_sys::core::PCWSTR, pathtosource : windows_sys::core::PCWSTR, sourcefile : windows_sys::core::PCWSTR, targetpathfile : windows_sys::core::PCWSTR, win32errorcode : u32, style : u32, pathbuffer : windows_sys::core::PWSTR, pathbuffersize : u32, pathrequiredsize : *mut u32) -> u32);
|
294
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCopyOEMInfA(sourceinffilename : windows_sys::core::PCSTR, oemsourcemedialocation : windows_sys::core::PCSTR, oemsourcemediatype : OEM_SOURCE_MEDIA_TYPE, copystyle : SP_COPY_STYLE, destinationinffilename : windows_sys::core::PSTR, destinationinffilenamesize : u32, requiredsize : *mut u32, destinationinffilenamecomponent : *mut windows_sys::core::PSTR) -> super::super::Foundation:: BOOL);
|
295
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCopyOEMInfW(sourceinffilename : windows_sys::core::PCWSTR, oemsourcemedialocation : windows_sys::core::PCWSTR, oemsourcemediatype : OEM_SOURCE_MEDIA_TYPE, copystyle : SP_COPY_STYLE, destinationinffilename : windows_sys::core::PWSTR, destinationinffilenamesize : u32, requiredsize : *mut u32, destinationinffilenamecomponent : *mut windows_sys::core::PWSTR) -> super::super::Foundation:: BOOL);
|
296
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCreateDiskSpaceListA(reserved1 : *const core::ffi::c_void, reserved2 : u32, flags : u32) -> *mut core::ffi::c_void);
|
297
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupCreateDiskSpaceListW(reserved1 : *const core::ffi::c_void, reserved2 : u32, flags : u32) -> *mut core::ffi::c_void);
|
298
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDecompressOrCopyFileA(sourcefilename : windows_sys::core::PCSTR, targetfilename : windows_sys::core::PCSTR, compressiontype : *const FILE_COMPRESSION_TYPE) -> u32);
|
299
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDecompressOrCopyFileW(sourcefilename : windows_sys::core::PCWSTR, targetfilename : windows_sys::core::PCWSTR, compressiontype : *const FILE_COMPRESSION_TYPE) -> u32);
|
300
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDefaultQueueCallbackA(context : *const core::ffi::c_void, notification : u32, param1 : usize, param2 : usize) -> u32);
|
301
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDefaultQueueCallbackW(context : *const core::ffi::c_void, notification : u32, param1 : usize, param2 : usize) -> u32);
|
302
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDeleteErrorA(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCSTR, file : windows_sys::core::PCSTR, win32errorcode : u32, style : u32) -> u32);
|
303
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDeleteErrorW(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCWSTR, file : windows_sys::core::PCWSTR, win32errorcode : u32, style : u32) -> u32);
|
304
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDestroyDiskSpaceList(diskspace : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
305
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiAskForOEMDisk(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
306
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiBuildClassInfoList(flags : u32, classguidlist : *mut windows_sys::core::GUID, classguidlistsize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
307
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiBuildClassInfoListExA(flags : u32, classguidlist : *mut windows_sys::core::GUID, classguidlistsize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
308
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiBuildClassInfoListExW(flags : u32, classguidlist : *mut windows_sys::core::GUID, classguidlistsize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
309
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiBuildDriverInfoList(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA, drivertype : SETUP_DI_DRIVER_TYPE) -> super::super::Foundation:: BOOL);
|
310
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCallClassInstaller(installfunction : DI_FUNCTION, deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
311
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCancelDriverInfoSearch(deviceinfoset : HDEVINFO) -> super::super::Foundation:: BOOL);
|
312
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiChangeState(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
313
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiClassGuidsFromNameA(classname : windows_sys::core::PCSTR, classguidlist : *mut windows_sys::core::GUID, classguidlistsize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
314
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiClassGuidsFromNameExA(classname : windows_sys::core::PCSTR, classguidlist : *mut windows_sys::core::GUID, classguidlistsize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
315
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiClassGuidsFromNameExW(classname : windows_sys::core::PCWSTR, classguidlist : *mut windows_sys::core::GUID, classguidlistsize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
316
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiClassGuidsFromNameW(classname : windows_sys::core::PCWSTR, classguidlist : *mut windows_sys::core::GUID, classguidlistsize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
317
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiClassNameFromGuidA(classguid : *const windows_sys::core::GUID, classname : windows_sys::core::PSTR, classnamesize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
318
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiClassNameFromGuidExA(classguid : *const windows_sys::core::GUID, classname : windows_sys::core::PSTR, classnamesize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
319
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiClassNameFromGuidExW(classguid : *const windows_sys::core::GUID, classname : windows_sys::core::PWSTR, classnamesize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
320
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiClassNameFromGuidW(classguid : *const windows_sys::core::GUID, classname : windows_sys::core::PWSTR, classnamesize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
321
|
-
#[cfg(feature = "Win32_System_Registry")]
|
322
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDevRegKeyA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, scope : u32, hwprofile : u32, keytype : u32, infhandle : *const core::ffi::c_void, infsectionname : windows_sys::core::PCSTR) -> super::super::System::Registry:: HKEY);
|
323
|
-
#[cfg(feature = "Win32_System_Registry")]
|
324
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDevRegKeyW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, scope : u32, hwprofile : u32, keytype : u32, infhandle : *const core::ffi::c_void, infsectionname : windows_sys::core::PCWSTR) -> super::super::System::Registry:: HKEY);
|
325
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDeviceInfoA(deviceinfoset : HDEVINFO, devicename : windows_sys::core::PCSTR, classguid : *const windows_sys::core::GUID, devicedescription : windows_sys::core::PCSTR, hwndparent : super::super::Foundation:: HWND, creationflags : SETUP_DI_DEVICE_CREATION_FLAGS, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
326
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDeviceInfoList(classguid : *const windows_sys::core::GUID, hwndparent : super::super::Foundation:: HWND) -> HDEVINFO);
|
327
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDeviceInfoListExA(classguid : *const windows_sys::core::GUID, hwndparent : super::super::Foundation:: HWND, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> HDEVINFO);
|
328
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDeviceInfoListExW(classguid : *const windows_sys::core::GUID, hwndparent : super::super::Foundation:: HWND, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> HDEVINFO);
|
329
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDeviceInfoW(deviceinfoset : HDEVINFO, devicename : windows_sys::core::PCWSTR, classguid : *const windows_sys::core::GUID, devicedescription : windows_sys::core::PCWSTR, hwndparent : super::super::Foundation:: HWND, creationflags : SETUP_DI_DEVICE_CREATION_FLAGS, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
330
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDeviceInterfaceA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, interfaceclassguid : *const windows_sys::core::GUID, referencestring : windows_sys::core::PCSTR, creationflags : u32, deviceinterfacedata : *mut SP_DEVICE_INTERFACE_DATA) -> super::super::Foundation:: BOOL);
|
331
|
-
#[cfg(feature = "Win32_System_Registry")]
|
332
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDeviceInterfaceRegKeyA(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA, reserved : u32, samdesired : u32, infhandle : *const core::ffi::c_void, infsectionname : windows_sys::core::PCSTR) -> super::super::System::Registry:: HKEY);
|
333
|
-
#[cfg(feature = "Win32_System_Registry")]
|
334
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDeviceInterfaceRegKeyW(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA, reserved : u32, samdesired : u32, infhandle : *const core::ffi::c_void, infsectionname : windows_sys::core::PCWSTR) -> super::super::System::Registry:: HKEY);
|
335
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiCreateDeviceInterfaceW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, interfaceclassguid : *const windows_sys::core::GUID, referencestring : windows_sys::core::PCWSTR, creationflags : u32, deviceinterfacedata : *mut SP_DEVICE_INTERFACE_DATA) -> super::super::Foundation:: BOOL);
|
336
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiDeleteDevRegKey(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, scope : u32, hwprofile : u32, keytype : u32) -> super::super::Foundation:: BOOL);
|
337
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiDeleteDeviceInfo(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
338
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiDeleteDeviceInterfaceData(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA) -> super::super::Foundation:: BOOL);
|
339
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiDeleteDeviceInterfaceRegKey(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA, reserved : u32) -> super::super::Foundation:: BOOL);
|
340
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
341
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiDestroyClassImageList(classimagelistdata : *const SP_CLASSIMAGELIST_DATA) -> super::super::Foundation:: BOOL);
|
342
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiDestroyDeviceInfoList(deviceinfoset : HDEVINFO) -> super::super::Foundation:: BOOL);
|
343
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiDestroyDriverInfoList(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, drivertype : SETUP_DI_DRIVER_TYPE) -> super::super::Foundation:: BOOL);
|
344
|
-
#[cfg(feature = "Win32_Graphics_Gdi")]
|
345
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiDrawMiniIcon(hdc : super::super::Graphics::Gdi:: HDC, rc : super::super::Foundation:: RECT, miniiconindex : i32, flags : u32) -> i32);
|
346
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiEnumDeviceInfo(deviceinfoset : HDEVINFO, memberindex : u32, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
347
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiEnumDeviceInterfaces(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, interfaceclassguid : *const windows_sys::core::GUID, memberindex : u32, deviceinterfacedata : *mut SP_DEVICE_INTERFACE_DATA) -> super::super::Foundation:: BOOL);
|
348
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiEnumDriverInfoA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, drivertype : SETUP_DI_DRIVER_TYPE, memberindex : u32, driverinfodata : *mut SP_DRVINFO_DATA_V2_A) -> super::super::Foundation:: BOOL);
|
349
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiEnumDriverInfoW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, drivertype : SETUP_DI_DRIVER_TYPE, memberindex : u32, driverinfodata : *mut SP_DRVINFO_DATA_V2_W) -> super::super::Foundation:: BOOL);
|
350
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
351
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetActualModelsSectionA(context : *const INFCONTEXT, alternateplatforminfo : *const SP_ALTPLATFORM_INFO_V2, infsectionwithext : windows_sys::core::PSTR, infsectionwithextsize : u32, requiredsize : *mut u32, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
352
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
353
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetActualModelsSectionW(context : *const INFCONTEXT, alternateplatforminfo : *const SP_ALTPLATFORM_INFO_V2, infsectionwithext : windows_sys::core::PWSTR, infsectionwithextsize : u32, requiredsize : *mut u32, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
354
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetActualSectionToInstallA(infhandle : *const core::ffi::c_void, infsectionname : windows_sys::core::PCSTR, infsectionwithext : windows_sys::core::PSTR, infsectionwithextsize : u32, requiredsize : *mut u32, extension : *mut windows_sys::core::PSTR) -> super::super::Foundation:: BOOL);
|
355
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
356
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetActualSectionToInstallExA(infhandle : *const core::ffi::c_void, infsectionname : windows_sys::core::PCSTR, alternateplatforminfo : *const SP_ALTPLATFORM_INFO_V2, infsectionwithext : windows_sys::core::PSTR, infsectionwithextsize : u32, requiredsize : *mut u32, extension : *mut windows_sys::core::PSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
357
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
358
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetActualSectionToInstallExW(infhandle : *const core::ffi::c_void, infsectionname : windows_sys::core::PCWSTR, alternateplatforminfo : *const SP_ALTPLATFORM_INFO_V2, infsectionwithext : windows_sys::core::PWSTR, infsectionwithextsize : u32, requiredsize : *mut u32, extension : *mut windows_sys::core::PWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
359
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetActualSectionToInstallW(infhandle : *const core::ffi::c_void, infsectionname : windows_sys::core::PCWSTR, infsectionwithext : windows_sys::core::PWSTR, infsectionwithextsize : u32, requiredsize : *mut u32, extension : *mut windows_sys::core::PWSTR) -> super::super::Foundation:: BOOL);
|
360
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassBitmapIndex(classguid : *const windows_sys::core::GUID, miniiconindex : *mut i32) -> super::super::Foundation:: BOOL);
|
361
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassDescriptionA(classguid : *const windows_sys::core::GUID, classdescription : windows_sys::core::PSTR, classdescriptionsize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
362
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassDescriptionExA(classguid : *const windows_sys::core::GUID, classdescription : windows_sys::core::PSTR, classdescriptionsize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
363
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassDescriptionExW(classguid : *const windows_sys::core::GUID, classdescription : windows_sys::core::PWSTR, classdescriptionsize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
364
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassDescriptionW(classguid : *const windows_sys::core::GUID, classdescription : windows_sys::core::PWSTR, classdescriptionsize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
365
|
-
#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Controls", feature = "Win32_UI_WindowsAndMessaging"))]
|
366
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassDevPropertySheetsA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, propertysheetheader : *const super::super::UI::Controls:: PROPSHEETHEADERA_V2, propertysheetheaderpagelistsize : u32, requiredsize : *mut u32, propertysheettype : u32) -> super::super::Foundation:: BOOL);
|
367
|
-
#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Controls", feature = "Win32_UI_WindowsAndMessaging"))]
|
368
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassDevPropertySheetsW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, propertysheetheader : *const super::super::UI::Controls:: PROPSHEETHEADERW_V2, propertysheetheaderpagelistsize : u32, requiredsize : *mut u32, propertysheettype : u32) -> super::super::Foundation:: BOOL);
|
369
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassDevsA(classguid : *const windows_sys::core::GUID, enumerator : windows_sys::core::PCSTR, hwndparent : super::super::Foundation:: HWND, flags : SETUP_DI_GET_CLASS_DEVS_FLAGS) -> HDEVINFO);
|
370
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassDevsExA(classguid : *const windows_sys::core::GUID, enumerator : windows_sys::core::PCSTR, hwndparent : super::super::Foundation:: HWND, flags : SETUP_DI_GET_CLASS_DEVS_FLAGS, deviceinfoset : HDEVINFO, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> HDEVINFO);
|
371
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassDevsExW(classguid : *const windows_sys::core::GUID, enumerator : windows_sys::core::PCWSTR, hwndparent : super::super::Foundation:: HWND, flags : SETUP_DI_GET_CLASS_DEVS_FLAGS, deviceinfoset : HDEVINFO, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> HDEVINFO);
|
372
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassDevsW(classguid : *const windows_sys::core::GUID, enumerator : windows_sys::core::PCWSTR, hwndparent : super::super::Foundation:: HWND, flags : SETUP_DI_GET_CLASS_DEVS_FLAGS) -> HDEVINFO);
|
373
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
374
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassImageIndex(classimagelistdata : *const SP_CLASSIMAGELIST_DATA, classguid : *const windows_sys::core::GUID, imageindex : *mut i32) -> super::super::Foundation:: BOOL);
|
375
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
376
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassImageList(classimagelistdata : *mut SP_CLASSIMAGELIST_DATA) -> super::super::Foundation:: BOOL);
|
377
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
378
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassImageListExA(classimagelistdata : *mut SP_CLASSIMAGELIST_DATA, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
379
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
380
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassImageListExW(classimagelistdata : *mut SP_CLASSIMAGELIST_DATA, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
381
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassInstallParamsA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, classinstallparams : *mut SP_CLASSINSTALL_HEADER, classinstallparamssize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
382
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassInstallParamsW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, classinstallparams : *mut SP_CLASSINSTALL_HEADER, classinstallparamssize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
383
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
384
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassPropertyExW(classguid : *const windows_sys::core::GUID, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : *mut super::Properties:: DEVPROPTYPE, propertybuffer : *mut u8, propertybuffersize : u32, requiredsize : *mut u32, flags : u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
385
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
386
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassPropertyKeys(classguid : *const windows_sys::core::GUID, propertykeyarray : *mut super::Properties:: DEVPROPKEY, propertykeycount : u32, requiredpropertykeycount : *mut u32, flags : u32) -> super::super::Foundation:: BOOL);
|
387
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
388
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassPropertyKeysExW(classguid : *const windows_sys::core::GUID, propertykeyarray : *mut super::Properties:: DEVPROPKEY, propertykeycount : u32, requiredpropertykeycount : *mut u32, flags : u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
389
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
390
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassPropertyW(classguid : *const windows_sys::core::GUID, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : *mut super::Properties:: DEVPROPTYPE, propertybuffer : *mut u8, propertybuffersize : u32, requiredsize : *mut u32, flags : u32) -> super::super::Foundation:: BOOL);
|
391
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassRegistryPropertyA(classguid : *const windows_sys::core::GUID, property : u32, propertyregdatatype : *mut u32, propertybuffer : *mut u8, propertybuffersize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
392
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetClassRegistryPropertyW(classguid : *const windows_sys::core::GUID, property : u32, propertyregdatatype : *mut u32, propertybuffer : *mut u8, propertybuffersize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
393
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetCustomDevicePropertyA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, custompropertyname : windows_sys::core::PCSTR, flags : u32, propertyregdatatype : *mut u32, propertybuffer : *mut u8, propertybuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
394
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetCustomDevicePropertyW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, custompropertyname : windows_sys::core::PCWSTR, flags : u32, propertyregdatatype : *mut u32, propertybuffer : *mut u8, propertybuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
395
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInfoListClass(deviceinfoset : HDEVINFO, classguid : *mut windows_sys::core::GUID) -> super::super::Foundation:: BOOL);
|
396
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInfoListDetailA(deviceinfoset : HDEVINFO, deviceinfosetdetaildata : *mut SP_DEVINFO_LIST_DETAIL_DATA_A) -> super::super::Foundation:: BOOL);
|
397
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInfoListDetailW(deviceinfoset : HDEVINFO, deviceinfosetdetaildata : *mut SP_DEVINFO_LIST_DETAIL_DATA_W) -> super::super::Foundation:: BOOL);
|
398
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInstallParamsA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, deviceinstallparams : *mut SP_DEVINSTALL_PARAMS_A) -> super::super::Foundation:: BOOL);
|
399
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInstallParamsW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, deviceinstallparams : *mut SP_DEVINSTALL_PARAMS_W) -> super::super::Foundation:: BOOL);
|
400
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInstanceIdA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, deviceinstanceid : windows_sys::core::PSTR, deviceinstanceidsize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
401
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInstanceIdW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, deviceinstanceid : windows_sys::core::PWSTR, deviceinstanceidsize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
402
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInterfaceAlias(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA, aliasinterfaceclassguid : *const windows_sys::core::GUID, aliasdeviceinterfacedata : *mut SP_DEVICE_INTERFACE_DATA) -> super::super::Foundation:: BOOL);
|
403
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInterfaceDetailA(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA, deviceinterfacedetaildata : *mut SP_DEVICE_INTERFACE_DETAIL_DATA_A, deviceinterfacedetaildatasize : u32, requiredsize : *mut u32, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
404
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInterfaceDetailW(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA, deviceinterfacedetaildata : *mut SP_DEVICE_INTERFACE_DETAIL_DATA_W, deviceinterfacedetaildatasize : u32, requiredsize : *mut u32, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
405
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
406
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInterfacePropertyKeys(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA, propertykeyarray : *mut super::Properties:: DEVPROPKEY, propertykeycount : u32, requiredpropertykeycount : *mut u32, flags : u32) -> super::super::Foundation:: BOOL);
|
407
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
408
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceInterfacePropertyW(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : *mut super::Properties:: DEVPROPTYPE, propertybuffer : *mut u8, propertybuffersize : u32, requiredsize : *mut u32, flags : u32) -> super::super::Foundation:: BOOL);
|
409
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
410
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDevicePropertyKeys(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, propertykeyarray : *mut super::Properties:: DEVPROPKEY, propertykeycount : u32, requiredpropertykeycount : *mut u32, flags : u32) -> super::super::Foundation:: BOOL);
|
411
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
412
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDevicePropertyW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : *mut super::Properties:: DEVPROPTYPE, propertybuffer : *mut u8, propertybuffersize : u32, requiredsize : *mut u32, flags : u32) -> super::super::Foundation:: BOOL);
|
413
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceRegistryPropertyA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, property : SETUP_DI_REGISTRY_PROPERTY, propertyregdatatype : *mut u32, propertybuffer : *mut u8, propertybuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
414
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDeviceRegistryPropertyW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, property : SETUP_DI_REGISTRY_PROPERTY, propertyregdatatype : *mut u32, propertybuffer : *mut u8, propertybuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
415
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDriverInfoDetailA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, driverinfodata : *const SP_DRVINFO_DATA_V2_A, driverinfodetaildata : *mut SP_DRVINFO_DETAIL_DATA_A, driverinfodetaildatasize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
416
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDriverInfoDetailW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, driverinfodata : *const SP_DRVINFO_DATA_V2_W, driverinfodetaildata : *mut SP_DRVINFO_DETAIL_DATA_W, driverinfodetaildatasize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
417
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDriverInstallParamsA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, driverinfodata : *const SP_DRVINFO_DATA_V2_A, driverinstallparams : *mut SP_DRVINSTALL_PARAMS) -> super::super::Foundation:: BOOL);
|
418
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetDriverInstallParamsW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, driverinfodata : *const SP_DRVINFO_DATA_V2_W, driverinstallparams : *mut SP_DRVINSTALL_PARAMS) -> super::super::Foundation:: BOOL);
|
419
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetHwProfileFriendlyNameA(hwprofile : u32, friendlyname : windows_sys::core::PSTR, friendlynamesize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
420
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetHwProfileFriendlyNameExA(hwprofile : u32, friendlyname : windows_sys::core::PSTR, friendlynamesize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
421
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetHwProfileFriendlyNameExW(hwprofile : u32, friendlyname : windows_sys::core::PWSTR, friendlynamesize : u32, requiredsize : *mut u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
422
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetHwProfileFriendlyNameW(hwprofile : u32, friendlyname : windows_sys::core::PWSTR, friendlynamesize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
423
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetHwProfileList(hwprofilelist : *mut u32, hwprofilelistsize : u32, requiredsize : *mut u32, currentlyactiveindex : *mut u32) -> super::super::Foundation:: BOOL);
|
424
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetHwProfileListExA(hwprofilelist : *mut u32, hwprofilelistsize : u32, requiredsize : *mut u32, currentlyactiveindex : *mut u32, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
425
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetHwProfileListExW(hwprofilelist : *mut u32, hwprofilelistsize : u32, requiredsize : *mut u32, currentlyactiveindex : *mut u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
426
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetINFClassA(infname : windows_sys::core::PCSTR, classguid : *mut windows_sys::core::GUID, classname : windows_sys::core::PSTR, classnamesize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
427
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetINFClassW(infname : windows_sys::core::PCWSTR, classguid : *mut windows_sys::core::GUID, classname : windows_sys::core::PWSTR, classnamesize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
428
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetSelectedDevice(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
429
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetSelectedDriverA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, driverinfodata : *mut SP_DRVINFO_DATA_V2_A) -> super::super::Foundation:: BOOL);
|
430
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetSelectedDriverW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, driverinfodata : *mut SP_DRVINFO_DATA_V2_W) -> super::super::Foundation:: BOOL);
|
431
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
432
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiGetWizardPage(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, installwizarddata : *const SP_INSTALLWIZARD_DATA, pagetype : u32, flags : u32) -> super::super::UI::Controls:: HPROPSHEETPAGE);
|
433
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiInstallClassA(hwndparent : super::super::Foundation:: HWND, inffilename : windows_sys::core::PCSTR, flags : u32, filequeue : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
434
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiInstallClassExA(hwndparent : super::super::Foundation:: HWND, inffilename : windows_sys::core::PCSTR, flags : u32, filequeue : *const core::ffi::c_void, interfaceclassguid : *const windows_sys::core::GUID, reserved1 : *const core::ffi::c_void, reserved2 : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
435
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiInstallClassExW(hwndparent : super::super::Foundation:: HWND, inffilename : windows_sys::core::PCWSTR, flags : u32, filequeue : *const core::ffi::c_void, interfaceclassguid : *const windows_sys::core::GUID, reserved1 : *const core::ffi::c_void, reserved2 : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
436
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiInstallClassW(hwndparent : super::super::Foundation:: HWND, inffilename : windows_sys::core::PCWSTR, flags : u32, filequeue : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
437
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiInstallDevice(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
438
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiInstallDeviceInterfaces(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
439
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiInstallDriverFiles(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
440
|
-
#[cfg(feature = "Win32_UI_WindowsAndMessaging")]
|
441
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiLoadClassIcon(classguid : *const windows_sys::core::GUID, largeicon : *mut super::super::UI::WindowsAndMessaging:: HICON, miniiconindex : *mut i32) -> super::super::Foundation:: BOOL);
|
442
|
-
#[cfg(feature = "Win32_UI_WindowsAndMessaging")]
|
443
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiLoadDeviceIcon(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, cxicon : u32, cyicon : u32, flags : u32, hicon : *mut super::super::UI::WindowsAndMessaging:: HICON) -> super::super::Foundation:: BOOL);
|
444
|
-
#[cfg(feature = "Win32_System_Registry")]
|
445
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiOpenClassRegKey(classguid : *const windows_sys::core::GUID, samdesired : u32) -> super::super::System::Registry:: HKEY);
|
446
|
-
#[cfg(feature = "Win32_System_Registry")]
|
447
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiOpenClassRegKeyExA(classguid : *const windows_sys::core::GUID, samdesired : u32, flags : u32, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> super::super::System::Registry:: HKEY);
|
448
|
-
#[cfg(feature = "Win32_System_Registry")]
|
449
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiOpenClassRegKeyExW(classguid : *const windows_sys::core::GUID, samdesired : u32, flags : u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::System::Registry:: HKEY);
|
450
|
-
#[cfg(feature = "Win32_System_Registry")]
|
451
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiOpenDevRegKey(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, scope : u32, hwprofile : u32, keytype : u32, samdesired : u32) -> super::super::System::Registry:: HKEY);
|
452
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiOpenDeviceInfoA(deviceinfoset : HDEVINFO, deviceinstanceid : windows_sys::core::PCSTR, hwndparent : super::super::Foundation:: HWND, openflags : u32, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
453
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiOpenDeviceInfoW(deviceinfoset : HDEVINFO, deviceinstanceid : windows_sys::core::PCWSTR, hwndparent : super::super::Foundation:: HWND, openflags : u32, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
454
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiOpenDeviceInterfaceA(deviceinfoset : HDEVINFO, devicepath : windows_sys::core::PCSTR, openflags : u32, deviceinterfacedata : *mut SP_DEVICE_INTERFACE_DATA) -> super::super::Foundation:: BOOL);
|
455
|
-
#[cfg(feature = "Win32_System_Registry")]
|
456
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiOpenDeviceInterfaceRegKey(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA, reserved : u32, samdesired : u32) -> super::super::System::Registry:: HKEY);
|
457
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiOpenDeviceInterfaceW(deviceinfoset : HDEVINFO, devicepath : windows_sys::core::PCWSTR, openflags : u32, deviceinterfacedata : *mut SP_DEVICE_INTERFACE_DATA) -> super::super::Foundation:: BOOL);
|
458
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiRegisterCoDeviceInstallers(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
459
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiRegisterDeviceInfo(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA, flags : u32, compareproc : PSP_DETSIG_CMPPROC, comparecontext : *const core::ffi::c_void, dupdeviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
460
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiRemoveDevice(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
461
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiRemoveDeviceInterface(deviceinfoset : HDEVINFO, deviceinterfacedata : *mut SP_DEVICE_INTERFACE_DATA) -> super::super::Foundation:: BOOL);
|
462
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiRestartDevices(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
463
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSelectBestCompatDrv(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
464
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSelectDevice(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
465
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSelectOEMDrv(hwndparent : super::super::Foundation:: HWND, deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
466
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetClassInstallParamsA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, classinstallparams : *const SP_CLASSINSTALL_HEADER, classinstallparamssize : u32) -> super::super::Foundation:: BOOL);
|
467
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetClassInstallParamsW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, classinstallparams : *const SP_CLASSINSTALL_HEADER, classinstallparamssize : u32) -> super::super::Foundation:: BOOL);
|
468
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
469
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetClassPropertyExW(classguid : *const windows_sys::core::GUID, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : super::Properties:: DEVPROPTYPE, propertybuffer : *const u8, propertybuffersize : u32, flags : u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
470
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
471
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetClassPropertyW(classguid : *const windows_sys::core::GUID, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : super::Properties:: DEVPROPTYPE, propertybuffer : *const u8, propertybuffersize : u32, flags : u32) -> super::super::Foundation:: BOOL);
|
472
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetClassRegistryPropertyA(classguid : *const windows_sys::core::GUID, property : u32, propertybuffer : *const u8, propertybuffersize : u32, machinename : windows_sys::core::PCSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
473
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetClassRegistryPropertyW(classguid : *const windows_sys::core::GUID, property : u32, propertybuffer : *const u8, propertybuffersize : u32, machinename : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
474
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetDeviceInstallParamsA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, deviceinstallparams : *const SP_DEVINSTALL_PARAMS_A) -> super::super::Foundation:: BOOL);
|
475
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetDeviceInstallParamsW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, deviceinstallparams : *const SP_DEVINSTALL_PARAMS_W) -> super::super::Foundation:: BOOL);
|
476
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetDeviceInterfaceDefault(deviceinfoset : HDEVINFO, deviceinterfacedata : *mut SP_DEVICE_INTERFACE_DATA, flags : u32, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
477
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
478
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetDeviceInterfacePropertyW(deviceinfoset : HDEVINFO, deviceinterfacedata : *const SP_DEVICE_INTERFACE_DATA, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : super::Properties:: DEVPROPTYPE, propertybuffer : *const u8, propertybuffersize : u32, flags : u32) -> super::super::Foundation:: BOOL);
|
479
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
480
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetDevicePropertyW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, propertykey : *const super::Properties:: DEVPROPKEY, propertytype : super::Properties:: DEVPROPTYPE, propertybuffer : *const u8, propertybuffersize : u32, flags : u32) -> super::super::Foundation:: BOOL);
|
481
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetDeviceRegistryPropertyA(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA, property : SETUP_DI_REGISTRY_PROPERTY, propertybuffer : *const u8, propertybuffersize : u32) -> super::super::Foundation:: BOOL);
|
482
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetDeviceRegistryPropertyW(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA, property : SETUP_DI_REGISTRY_PROPERTY, propertybuffer : *const u8, propertybuffersize : u32) -> super::super::Foundation:: BOOL);
|
483
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetDriverInstallParamsA(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, driverinfodata : *const SP_DRVINFO_DATA_V2_A, driverinstallparams : *const SP_DRVINSTALL_PARAMS) -> super::super::Foundation:: BOOL);
|
484
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetDriverInstallParamsW(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, driverinfodata : *const SP_DRVINFO_DATA_V2_W, driverinstallparams : *const SP_DRVINSTALL_PARAMS) -> super::super::Foundation:: BOOL);
|
485
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetSelectedDevice(deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
486
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetSelectedDriverA(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA, driverinfodata : *mut SP_DRVINFO_DATA_V2_A) -> super::super::Foundation:: BOOL);
|
487
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiSetSelectedDriverW(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA, driverinfodata : *mut SP_DRVINFO_DATA_V2_W) -> super::super::Foundation:: BOOL);
|
488
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDiUnremoveDevice(deviceinfoset : HDEVINFO, deviceinfodata : *mut SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
489
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDuplicateDiskSpaceListA(diskspace : *const core::ffi::c_void, reserved1 : *const core::ffi::c_void, reserved2 : u32, flags : u32) -> *mut core::ffi::c_void);
|
490
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupDuplicateDiskSpaceListW(diskspace : *const core::ffi::c_void, reserved1 : *const core::ffi::c_void, reserved2 : u32, flags : u32) -> *mut core::ffi::c_void);
|
491
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupEnumInfSectionsA(infhandle : *const core::ffi::c_void, index : u32, buffer : windows_sys::core::PSTR, size : u32, sizeneeded : *mut u32) -> super::super::Foundation:: BOOL);
|
492
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupEnumInfSectionsW(infhandle : *const core::ffi::c_void, index : u32, buffer : windows_sys::core::PWSTR, size : u32, sizeneeded : *mut u32) -> super::super::Foundation:: BOOL);
|
493
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupFindFirstLineA(infhandle : *const core::ffi::c_void, section : windows_sys::core::PCSTR, key : windows_sys::core::PCSTR, context : *mut INFCONTEXT) -> super::super::Foundation:: BOOL);
|
494
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupFindFirstLineW(infhandle : *const core::ffi::c_void, section : windows_sys::core::PCWSTR, key : windows_sys::core::PCWSTR, context : *mut INFCONTEXT) -> super::super::Foundation:: BOOL);
|
495
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupFindNextLine(contextin : *const INFCONTEXT, contextout : *mut INFCONTEXT) -> super::super::Foundation:: BOOL);
|
496
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupFindNextMatchLineA(contextin : *const INFCONTEXT, key : windows_sys::core::PCSTR, contextout : *mut INFCONTEXT) -> super::super::Foundation:: BOOL);
|
497
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupFindNextMatchLineW(contextin : *const INFCONTEXT, key : windows_sys::core::PCWSTR, contextout : *mut INFCONTEXT) -> super::super::Foundation:: BOOL);
|
498
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupFreeSourceListA(list : *mut *mut windows_sys::core::PCSTR, count : u32) -> super::super::Foundation:: BOOL);
|
499
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupFreeSourceListW(list : *mut *mut windows_sys::core::PCWSTR, count : u32) -> super::super::Foundation:: BOOL);
|
500
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetBackupInformationA(queuehandle : *const core::ffi::c_void, backupparams : *mut SP_BACKUP_QUEUE_PARAMS_V2_A) -> super::super::Foundation:: BOOL);
|
501
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetBackupInformationW(queuehandle : *const core::ffi::c_void, backupparams : *mut SP_BACKUP_QUEUE_PARAMS_V2_W) -> super::super::Foundation:: BOOL);
|
502
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetBinaryField(context : *const INFCONTEXT, fieldindex : u32, returnbuffer : *mut u8, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
503
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetFieldCount(context : *const INFCONTEXT) -> u32);
|
504
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoA(sourcefilename : windows_sys::core::PCSTR, actualsourcefilename : *mut windows_sys::core::PSTR, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> u32);
|
505
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoExA(sourcefilename : windows_sys::core::PCSTR, actualsourcefilenamebuffer : windows_sys::core::PCSTR, actualsourcefilenamebufferlen : u32, requiredbufferlen : *mut u32, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> super::super::Foundation:: BOOL);
|
506
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoExW(sourcefilename : windows_sys::core::PCWSTR, actualsourcefilenamebuffer : windows_sys::core::PCWSTR, actualsourcefilenamebufferlen : u32, requiredbufferlen : *mut u32, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> super::super::Foundation:: BOOL);
|
507
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoW(sourcefilename : windows_sys::core::PCWSTR, actualsourcefilename : *mut windows_sys::core::PWSTR, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> u32);
|
508
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetFileQueueCount(filequeue : *const core::ffi::c_void, subqueuefileop : u32, numoperations : *mut u32) -> super::super::Foundation:: BOOL);
|
509
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetFileQueueFlags(filequeue : *const core::ffi::c_void, flags : *mut u32) -> super::super::Foundation:: BOOL);
|
510
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
511
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetInfDriverStoreLocationA(filename : windows_sys::core::PCSTR, alternateplatforminfo : *const SP_ALTPLATFORM_INFO_V2, localename : windows_sys::core::PCSTR, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
512
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
513
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetInfDriverStoreLocationW(filename : windows_sys::core::PCWSTR, alternateplatforminfo : *const SP_ALTPLATFORM_INFO_V2, localename : windows_sys::core::PCWSTR, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
514
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetInfFileListA(directorypath : windows_sys::core::PCSTR, infstyle : INF_STYLE, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
515
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetInfFileListW(directorypath : windows_sys::core::PCWSTR, infstyle : INF_STYLE, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
516
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetInfInformationA(infspec : *const core::ffi::c_void, searchcontrol : u32, returnbuffer : *mut SP_INF_INFORMATION, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
517
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetInfInformationW(infspec : *const core::ffi::c_void, searchcontrol : u32, returnbuffer : *mut SP_INF_INFORMATION, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
518
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetInfPublishedNameA(driverstorelocation : windows_sys::core::PCSTR, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
519
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetInfPublishedNameW(driverstorelocation : windows_sys::core::PCWSTR, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
520
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetIntField(context : *const INFCONTEXT, fieldindex : u32, integervalue : *mut i32) -> super::super::Foundation:: BOOL);
|
521
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetLineByIndexA(infhandle : *const core::ffi::c_void, section : windows_sys::core::PCSTR, index : u32, context : *mut INFCONTEXT) -> super::super::Foundation:: BOOL);
|
522
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetLineByIndexW(infhandle : *const core::ffi::c_void, section : windows_sys::core::PCWSTR, index : u32, context : *mut INFCONTEXT) -> super::super::Foundation:: BOOL);
|
523
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetLineCountA(infhandle : *const core::ffi::c_void, section : windows_sys::core::PCSTR) -> i32);
|
524
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetLineCountW(infhandle : *const core::ffi::c_void, section : windows_sys::core::PCWSTR) -> i32);
|
525
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetLineTextA(context : *const INFCONTEXT, infhandle : *const core::ffi::c_void, section : windows_sys::core::PCSTR, key : windows_sys::core::PCSTR, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
526
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetLineTextW(context : *const INFCONTEXT, infhandle : *const core::ffi::c_void, section : windows_sys::core::PCWSTR, key : windows_sys::core::PCWSTR, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
527
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetMultiSzFieldA(context : *const INFCONTEXT, fieldindex : u32, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
528
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetMultiSzFieldW(context : *const INFCONTEXT, fieldindex : u32, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
529
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetNonInteractiveMode() -> super::super::Foundation:: BOOL);
|
530
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetSourceFileLocationA(infhandle : *const core::ffi::c_void, infcontext : *const INFCONTEXT, filename : windows_sys::core::PCSTR, sourceid : *mut u32, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
531
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetSourceFileLocationW(infhandle : *const core::ffi::c_void, infcontext : *const INFCONTEXT, filename : windows_sys::core::PCWSTR, sourceid : *mut u32, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
532
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetSourceFileSizeA(infhandle : *const core::ffi::c_void, infcontext : *const INFCONTEXT, filename : windows_sys::core::PCSTR, section : windows_sys::core::PCSTR, filesize : *mut u32, roundingfactor : u32) -> super::super::Foundation:: BOOL);
|
533
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetSourceFileSizeW(infhandle : *const core::ffi::c_void, infcontext : *const INFCONTEXT, filename : windows_sys::core::PCWSTR, section : windows_sys::core::PCWSTR, filesize : *mut u32, roundingfactor : u32) -> super::super::Foundation:: BOOL);
|
534
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetSourceInfoA(infhandle : *const core::ffi::c_void, sourceid : u32, infodesired : u32, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
535
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetSourceInfoW(infhandle : *const core::ffi::c_void, sourceid : u32, infodesired : u32, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
536
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetStringFieldA(context : *const INFCONTEXT, fieldindex : u32, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
537
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetStringFieldW(context : *const INFCONTEXT, fieldindex : u32, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
538
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetTargetPathA(infhandle : *const core::ffi::c_void, infcontext : *const INFCONTEXT, section : windows_sys::core::PCSTR, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
539
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetTargetPathW(infhandle : *const core::ffi::c_void, infcontext : *const INFCONTEXT, section : windows_sys::core::PCWSTR, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
540
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupGetThreadLogToken() -> u64);
|
541
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInitDefaultQueueCallback(ownerwindow : super::super::Foundation:: HWND) -> *mut core::ffi::c_void);
|
542
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInitDefaultQueueCallbackEx(ownerwindow : super::super::Foundation:: HWND, alternateprogresswindow : super::super::Foundation:: HWND, progressmessage : u32, reserved1 : u32, reserved2 : *const core::ffi::c_void) -> *mut core::ffi::c_void);
|
543
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInitializeFileLogA(logfilename : windows_sys::core::PCSTR, flags : u32) -> *mut core::ffi::c_void);
|
544
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInitializeFileLogW(logfilename : windows_sys::core::PCWSTR, flags : u32) -> *mut core::ffi::c_void);
|
545
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallFileA(infhandle : *const core::ffi::c_void, infcontext : *const INFCONTEXT, sourcefile : windows_sys::core::PCSTR, sourcepathroot : windows_sys::core::PCSTR, destinationname : windows_sys::core::PCSTR, copystyle : SP_COPY_STYLE, copymsghandler : PSP_FILE_CALLBACK_A, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
546
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallFileExA(infhandle : *const core::ffi::c_void, infcontext : *const INFCONTEXT, sourcefile : windows_sys::core::PCSTR, sourcepathroot : windows_sys::core::PCSTR, destinationname : windows_sys::core::PCSTR, copystyle : SP_COPY_STYLE, copymsghandler : PSP_FILE_CALLBACK_A, context : *const core::ffi::c_void, filewasinuse : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
547
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallFileExW(infhandle : *const core::ffi::c_void, infcontext : *const INFCONTEXT, sourcefile : windows_sys::core::PCWSTR, sourcepathroot : windows_sys::core::PCWSTR, destinationname : windows_sys::core::PCWSTR, copystyle : SP_COPY_STYLE, copymsghandler : PSP_FILE_CALLBACK_W, context : *const core::ffi::c_void, filewasinuse : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
548
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallFileW(infhandle : *const core::ffi::c_void, infcontext : *const INFCONTEXT, sourcefile : windows_sys::core::PCWSTR, sourcepathroot : windows_sys::core::PCWSTR, destinationname : windows_sys::core::PCWSTR, copystyle : SP_COPY_STYLE, copymsghandler : PSP_FILE_CALLBACK_W, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
549
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallFilesFromInfSectionA(infhandle : *const core::ffi::c_void, layoutinfhandle : *const core::ffi::c_void, filequeue : *const core::ffi::c_void, sectionname : windows_sys::core::PCSTR, sourcerootpath : windows_sys::core::PCSTR, copyflags : u32) -> super::super::Foundation:: BOOL);
|
550
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallFilesFromInfSectionW(infhandle : *const core::ffi::c_void, layoutinfhandle : *const core::ffi::c_void, filequeue : *const core::ffi::c_void, sectionname : windows_sys::core::PCWSTR, sourcerootpath : windows_sys::core::PCWSTR, copyflags : u32) -> super::super::Foundation:: BOOL);
|
551
|
-
#[cfg(feature = "Win32_System_Registry")]
|
552
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallFromInfSectionA(owner : super::super::Foundation:: HWND, infhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCSTR, flags : u32, relativekeyroot : super::super::System::Registry:: HKEY, sourcerootpath : windows_sys::core::PCSTR, copyflags : u32, msghandler : PSP_FILE_CALLBACK_A, context : *const core::ffi::c_void, deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
553
|
-
#[cfg(feature = "Win32_System_Registry")]
|
554
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallFromInfSectionW(owner : super::super::Foundation:: HWND, infhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCWSTR, flags : u32, relativekeyroot : super::super::System::Registry:: HKEY, sourcerootpath : windows_sys::core::PCWSTR, copyflags : u32, msghandler : PSP_FILE_CALLBACK_W, context : *const core::ffi::c_void, deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA) -> super::super::Foundation:: BOOL);
|
555
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallServicesFromInfSectionA(infhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCSTR, flags : SPSVCINST_FLAGS) -> super::super::Foundation:: BOOL);
|
556
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallServicesFromInfSectionExA(infhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCSTR, flags : SPSVCINST_FLAGS, deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, reserved1 : *const core::ffi::c_void, reserved2 : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
557
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallServicesFromInfSectionExW(infhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCWSTR, flags : SPSVCINST_FLAGS, deviceinfoset : HDEVINFO, deviceinfodata : *const SP_DEVINFO_DATA, reserved1 : *const core::ffi::c_void, reserved2 : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
558
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupInstallServicesFromInfSectionW(infhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCWSTR, flags : SPSVCINST_FLAGS) -> super::super::Foundation:: BOOL);
|
559
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupIterateCabinetA(cabinetfile : windows_sys::core::PCSTR, reserved : u32, msghandler : PSP_FILE_CALLBACK_A, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
560
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupIterateCabinetW(cabinetfile : windows_sys::core::PCWSTR, reserved : u32, msghandler : PSP_FILE_CALLBACK_W, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
561
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupLogErrorA(messagestring : windows_sys::core::PCSTR, severity : u32) -> super::super::Foundation:: BOOL);
|
562
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupLogErrorW(messagestring : windows_sys::core::PCWSTR, severity : u32) -> super::super::Foundation:: BOOL);
|
563
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupLogFileA(fileloghandle : *const core::ffi::c_void, logsectionname : windows_sys::core::PCSTR, sourcefilename : windows_sys::core::PCSTR, targetfilename : windows_sys::core::PCSTR, checksum : u32, disktagfile : windows_sys::core::PCSTR, diskdescription : windows_sys::core::PCSTR, otherinfo : windows_sys::core::PCSTR, flags : u32) -> super::super::Foundation:: BOOL);
|
564
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupLogFileW(fileloghandle : *const core::ffi::c_void, logsectionname : windows_sys::core::PCWSTR, sourcefilename : windows_sys::core::PCWSTR, targetfilename : windows_sys::core::PCWSTR, checksum : u32, disktagfile : windows_sys::core::PCWSTR, diskdescription : windows_sys::core::PCWSTR, otherinfo : windows_sys::core::PCWSTR, flags : u32) -> super::super::Foundation:: BOOL);
|
565
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupOpenAppendInfFileA(filename : windows_sys::core::PCSTR, infhandle : *const core::ffi::c_void, errorline : *mut u32) -> super::super::Foundation:: BOOL);
|
566
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupOpenAppendInfFileW(filename : windows_sys::core::PCWSTR, infhandle : *const core::ffi::c_void, errorline : *mut u32) -> super::super::Foundation:: BOOL);
|
567
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupOpenFileQueue() -> *mut core::ffi::c_void);
|
568
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupOpenInfFileA(filename : windows_sys::core::PCSTR, infclass : windows_sys::core::PCSTR, infstyle : INF_STYLE, errorline : *mut u32) -> *mut core::ffi::c_void);
|
569
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupOpenInfFileW(filename : windows_sys::core::PCWSTR, infclass : windows_sys::core::PCWSTR, infstyle : INF_STYLE, errorline : *mut u32) -> *mut core::ffi::c_void);
|
570
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupOpenLog(erase : super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
571
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupOpenMasterInf() -> *mut core::ffi::c_void);
|
572
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupPrepareQueueForRestoreA(queuehandle : *const core::ffi::c_void, backuppath : windows_sys::core::PCSTR, restoreflags : u32) -> super::super::Foundation:: BOOL);
|
573
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupPrepareQueueForRestoreW(queuehandle : *const core::ffi::c_void, backuppath : windows_sys::core::PCWSTR, restoreflags : u32) -> super::super::Foundation:: BOOL);
|
574
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupPromptForDiskA(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCSTR, diskname : windows_sys::core::PCSTR, pathtosource : windows_sys::core::PCSTR, filesought : windows_sys::core::PCSTR, tagfile : windows_sys::core::PCSTR, diskpromptstyle : u32, pathbuffer : windows_sys::core::PSTR, pathbuffersize : u32, pathrequiredsize : *mut u32) -> u32);
|
575
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupPromptForDiskW(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCWSTR, diskname : windows_sys::core::PCWSTR, pathtosource : windows_sys::core::PCWSTR, filesought : windows_sys::core::PCWSTR, tagfile : windows_sys::core::PCWSTR, diskpromptstyle : u32, pathbuffer : windows_sys::core::PWSTR, pathbuffersize : u32, pathrequiredsize : *mut u32) -> u32);
|
576
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupPromptReboot(filequeue : *const core::ffi::c_void, owner : super::super::Foundation:: HWND, scanonly : super::super::Foundation:: BOOL) -> i32);
|
577
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueryDrivesInDiskSpaceListA(diskspace : *const core::ffi::c_void, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
578
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueryDrivesInDiskSpaceListW(diskspace : *const core::ffi::c_void, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
579
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueryFileLogA(fileloghandle : *const core::ffi::c_void, logsectionname : windows_sys::core::PCSTR, targetfilename : windows_sys::core::PCSTR, desiredinfo : SetupFileLogInfo, dataout : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
580
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueryFileLogW(fileloghandle : *const core::ffi::c_void, logsectionname : windows_sys::core::PCWSTR, targetfilename : windows_sys::core::PCWSTR, desiredinfo : SetupFileLogInfo, dataout : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
581
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueryInfFileInformationA(infinformation : *const SP_INF_INFORMATION, infindex : u32, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
582
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueryInfFileInformationW(infinformation : *const SP_INF_INFORMATION, infindex : u32, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
583
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
584
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueryInfOriginalFileInformationA(infinformation : *const SP_INF_INFORMATION, infindex : u32, alternateplatforminfo : *const SP_ALTPLATFORM_INFO_V2, originalfileinfo : *mut SP_ORIGINAL_FILE_INFO_A) -> super::super::Foundation:: BOOL);
|
585
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
586
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueryInfOriginalFileInformationW(infinformation : *const SP_INF_INFORMATION, infindex : u32, alternateplatforminfo : *const SP_ALTPLATFORM_INFO_V2, originalfileinfo : *mut SP_ORIGINAL_FILE_INFO_W) -> super::super::Foundation:: BOOL);
|
587
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueryInfVersionInformationA(infinformation : *const SP_INF_INFORMATION, infindex : u32, key : windows_sys::core::PCSTR, returnbuffer : windows_sys::core::PSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
588
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueryInfVersionInformationW(infinformation : *const SP_INF_INFORMATION, infindex : u32, key : windows_sys::core::PCWSTR, returnbuffer : windows_sys::core::PWSTR, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL);
|
589
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQuerySourceListA(flags : u32, list : *mut *mut windows_sys::core::PCSTR, count : *mut u32) -> super::super::Foundation:: BOOL);
|
590
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQuerySourceListW(flags : u32, list : *mut *mut windows_sys::core::PCWSTR, count : *mut u32) -> super::super::Foundation:: BOOL);
|
591
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQuerySpaceRequiredOnDriveA(diskspace : *const core::ffi::c_void, drivespec : windows_sys::core::PCSTR, spacerequired : *mut i64, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
592
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQuerySpaceRequiredOnDriveW(diskspace : *const core::ffi::c_void, drivespec : windows_sys::core::PCWSTR, spacerequired : *mut i64, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
593
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueCopyA(queuehandle : *const core::ffi::c_void, sourcerootpath : windows_sys::core::PCSTR, sourcepath : windows_sys::core::PCSTR, sourcefilename : windows_sys::core::PCSTR, sourcedescription : windows_sys::core::PCSTR, sourcetagfile : windows_sys::core::PCSTR, targetdirectory : windows_sys::core::PCSTR, targetfilename : windows_sys::core::PCSTR, copystyle : u32) -> super::super::Foundation:: BOOL);
|
594
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueCopyIndirectA(copyparams : *const SP_FILE_COPY_PARAMS_A) -> super::super::Foundation:: BOOL);
|
595
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueCopyIndirectW(copyparams : *const SP_FILE_COPY_PARAMS_W) -> super::super::Foundation:: BOOL);
|
596
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueCopySectionA(queuehandle : *const core::ffi::c_void, sourcerootpath : windows_sys::core::PCSTR, infhandle : *const core::ffi::c_void, listinfhandle : *const core::ffi::c_void, section : windows_sys::core::PCSTR, copystyle : u32) -> super::super::Foundation:: BOOL);
|
597
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueCopySectionW(queuehandle : *const core::ffi::c_void, sourcerootpath : windows_sys::core::PCWSTR, infhandle : *const core::ffi::c_void, listinfhandle : *const core::ffi::c_void, section : windows_sys::core::PCWSTR, copystyle : u32) -> super::super::Foundation:: BOOL);
|
598
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueCopyW(queuehandle : *const core::ffi::c_void, sourcerootpath : windows_sys::core::PCWSTR, sourcepath : windows_sys::core::PCWSTR, sourcefilename : windows_sys::core::PCWSTR, sourcedescription : windows_sys::core::PCWSTR, sourcetagfile : windows_sys::core::PCWSTR, targetdirectory : windows_sys::core::PCWSTR, targetfilename : windows_sys::core::PCWSTR, copystyle : u32) -> super::super::Foundation:: BOOL);
|
599
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueDefaultCopyA(queuehandle : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, sourcerootpath : windows_sys::core::PCSTR, sourcefilename : windows_sys::core::PCSTR, targetfilename : windows_sys::core::PCSTR, copystyle : u32) -> super::super::Foundation:: BOOL);
|
600
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueDefaultCopyW(queuehandle : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, sourcerootpath : windows_sys::core::PCWSTR, sourcefilename : windows_sys::core::PCWSTR, targetfilename : windows_sys::core::PCWSTR, copystyle : u32) -> super::super::Foundation:: BOOL);
|
601
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueDeleteA(queuehandle : *const core::ffi::c_void, pathpart1 : windows_sys::core::PCSTR, pathpart2 : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL);
|
602
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueDeleteSectionA(queuehandle : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, listinfhandle : *const core::ffi::c_void, section : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL);
|
603
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueDeleteSectionW(queuehandle : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, listinfhandle : *const core::ffi::c_void, section : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL);
|
604
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueDeleteW(queuehandle : *const core::ffi::c_void, pathpart1 : windows_sys::core::PCWSTR, pathpart2 : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL);
|
605
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueRenameA(queuehandle : *const core::ffi::c_void, sourcepath : windows_sys::core::PCSTR, sourcefilename : windows_sys::core::PCSTR, targetpath : windows_sys::core::PCSTR, targetfilename : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL);
|
606
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueRenameSectionA(queuehandle : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, listinfhandle : *const core::ffi::c_void, section : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL);
|
607
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueRenameSectionW(queuehandle : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, listinfhandle : *const core::ffi::c_void, section : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL);
|
608
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupQueueRenameW(queuehandle : *const core::ffi::c_void, sourcepath : windows_sys::core::PCWSTR, sourcefilename : windows_sys::core::PCWSTR, targetpath : windows_sys::core::PCWSTR, targetfilename : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL);
|
609
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRemoveFileLogEntryA(fileloghandle : *const core::ffi::c_void, logsectionname : windows_sys::core::PCSTR, targetfilename : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL);
|
610
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRemoveFileLogEntryW(fileloghandle : *const core::ffi::c_void, logsectionname : windows_sys::core::PCWSTR, targetfilename : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL);
|
611
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRemoveFromDiskSpaceListA(diskspace : *const core::ffi::c_void, targetfilespec : windows_sys::core::PCSTR, operation : SETUP_FILE_OPERATION, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
612
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRemoveFromDiskSpaceListW(diskspace : *const core::ffi::c_void, targetfilespec : windows_sys::core::PCWSTR, operation : SETUP_FILE_OPERATION, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
613
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRemoveFromSourceListA(flags : u32, source : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL);
|
614
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRemoveFromSourceListW(flags : u32, source : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL);
|
615
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRemoveInstallSectionFromDiskSpaceListA(diskspace : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, layoutinfhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCSTR, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
616
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRemoveInstallSectionFromDiskSpaceListW(diskspace : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, layoutinfhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCWSTR, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
617
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRemoveSectionFromDiskSpaceListA(diskspace : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, listinfhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCSTR, operation : SETUP_FILE_OPERATION, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
618
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRemoveSectionFromDiskSpaceListW(diskspace : *const core::ffi::c_void, infhandle : *const core::ffi::c_void, listinfhandle : *const core::ffi::c_void, sectionname : windows_sys::core::PCWSTR, operation : SETUP_FILE_OPERATION, reserved1 : *const core::ffi::c_void, reserved2 : u32) -> super::super::Foundation:: BOOL);
|
619
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRenameErrorA(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCSTR, sourcefile : windows_sys::core::PCSTR, targetfile : windows_sys::core::PCSTR, win32errorcode : u32, style : u32) -> u32);
|
620
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupRenameErrorW(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCWSTR, sourcefile : windows_sys::core::PCWSTR, targetfile : windows_sys::core::PCWSTR, win32errorcode : u32, style : u32) -> u32);
|
621
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupScanFileQueueA(filequeue : *const core::ffi::c_void, flags : SETUPSCANFILEQUEUE_FLAGS, window : super::super::Foundation:: HWND, callbackroutine : PSP_FILE_CALLBACK_A, callbackcontext : *const core::ffi::c_void, result : *mut u32) -> super::super::Foundation:: BOOL);
|
622
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupScanFileQueueW(filequeue : *const core::ffi::c_void, flags : SETUPSCANFILEQUEUE_FLAGS, window : super::super::Foundation:: HWND, callbackroutine : PSP_FILE_CALLBACK_W, callbackcontext : *const core::ffi::c_void, result : *mut u32) -> super::super::Foundation:: BOOL);
|
623
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetDirectoryIdA(infhandle : *const core::ffi::c_void, id : u32, directory : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL);
|
624
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetDirectoryIdExA(infhandle : *const core::ffi::c_void, id : u32, directory : windows_sys::core::PCSTR, flags : u32, reserved1 : u32, reserved2 : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
625
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetDirectoryIdExW(infhandle : *const core::ffi::c_void, id : u32, directory : windows_sys::core::PCWSTR, flags : u32, reserved1 : u32, reserved2 : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
626
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetDirectoryIdW(infhandle : *const core::ffi::c_void, id : u32, directory : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL);
|
627
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
628
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetFileQueueAlternatePlatformA(queuehandle : *const core::ffi::c_void, alternateplatforminfo : *const SP_ALTPLATFORM_INFO_V2, alternatedefaultcatalogfile : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL);
|
629
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
630
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetFileQueueAlternatePlatformW(queuehandle : *const core::ffi::c_void, alternateplatforminfo : *const SP_ALTPLATFORM_INFO_V2, alternatedefaultcatalogfile : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL);
|
631
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetFileQueueFlags(filequeue : *const core::ffi::c_void, flagmask : u32, flags : u32) -> super::super::Foundation:: BOOL);
|
632
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetNonInteractiveMode(noninteractiveflag : super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
633
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetPlatformPathOverrideA(r#override : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL);
|
634
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetPlatformPathOverrideW(r#override : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL);
|
635
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetSourceListA(flags : u32, sourcelist : *const windows_sys::core::PCSTR, sourcecount : u32) -> super::super::Foundation:: BOOL);
|
636
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetSourceListW(flags : u32, sourcelist : *const windows_sys::core::PCWSTR, sourcecount : u32) -> super::super::Foundation:: BOOL);
|
637
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupSetThreadLogToken(logtoken : u64));
|
638
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupTermDefaultQueueCallback(context : *const core::ffi::c_void));
|
639
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupTerminateFileLog(fileloghandle : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
640
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupUninstallNewlyCopiedInfs(filequeue : *const core::ffi::c_void, flags : u32, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
641
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupUninstallOEMInfA(inffilename : windows_sys::core::PCSTR, flags : u32, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
642
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupUninstallOEMInfW(inffilename : windows_sys::core::PCWSTR, flags : u32, reserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL);
|
643
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
644
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupVerifyInfFileA(infname : windows_sys::core::PCSTR, altplatforminfo : *const SP_ALTPLATFORM_INFO_V2, infsignerinfo : *mut SP_INF_SIGNER_INFO_V2_A) -> super::super::Foundation:: BOOL);
|
645
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
646
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupVerifyInfFileW(infname : windows_sys::core::PCWSTR, altplatforminfo : *const SP_ALTPLATFORM_INFO_V2, infsignerinfo : *mut SP_INF_SIGNER_INFO_V2_W) -> super::super::Foundation:: BOOL);
|
647
|
-
windows_targets::link!("setupapi.dll" "cdecl" fn SetupWriteTextLog(logtoken : u64, category : u32, flags : u32, messagestr : windows_sys::core::PCSTR, ...));
|
648
|
-
windows_targets::link!("setupapi.dll" "cdecl" fn SetupWriteTextLogError(logtoken : u64, category : u32, logflags : u32, error : u32, messagestr : windows_sys::core::PCSTR, ...));
|
649
|
-
windows_targets::link!("setupapi.dll" "system" fn SetupWriteTextLogInfLine(logtoken : u64, flags : u32, infhandle : *const core::ffi::c_void, context : *const INFCONTEXT));
|
650
|
-
windows_targets::link!("newdev.dll" "system" fn UpdateDriverForPlugAndPlayDevicesA(hwndparent : super::super::Foundation:: HWND, hardwareid : windows_sys::core::PCSTR, fullinfpath : windows_sys::core::PCSTR, installflags : UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS, brebootrequired : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
651
|
-
windows_targets::link!("newdev.dll" "system" fn UpdateDriverForPlugAndPlayDevicesW(hwndparent : super::super::Foundation:: HWND, hardwareid : windows_sys::core::PCWSTR, fullinfpath : windows_sys::core::PCWSTR, installflags : UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS, brebootrequired : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL);
|
652
|
-
pub const ALLOC_LOG_CONF: CM_LOG_CONF = 2u32;
|
653
|
-
pub const BASIC_LOG_CONF: CM_LOG_CONF = 0u32;
|
654
|
-
pub const BOOT_LOG_CONF: CM_LOG_CONF = 3u32;
|
655
|
-
pub const CM_ADD_ID_BITS: u32 = 1u32;
|
656
|
-
pub const CM_ADD_ID_COMPATIBLE: u32 = 1u32;
|
657
|
-
pub const CM_ADD_ID_HARDWARE: u32 = 0u32;
|
658
|
-
pub const CM_ADD_RANGE_ADDIFCONFLICT: u32 = 0u32;
|
659
|
-
pub const CM_ADD_RANGE_BITS: u32 = 1u32;
|
660
|
-
pub const CM_ADD_RANGE_DONOTADDIFCONFLICT: u32 = 1u32;
|
661
|
-
pub const CM_CDFLAGS_DRIVER: CM_CDFLAGS = 1u32;
|
662
|
-
pub const CM_CDFLAGS_RESERVED: CM_CDFLAGS = 4u32;
|
663
|
-
pub const CM_CDFLAGS_ROOT_OWNED: CM_CDFLAGS = 2u32;
|
664
|
-
pub const CM_CDMASK_DESCRIPTION: CM_CDMASK = 8u32;
|
665
|
-
pub const CM_CDMASK_DEVINST: CM_CDMASK = 1u32;
|
666
|
-
pub const CM_CDMASK_FLAGS: CM_CDMASK = 4u32;
|
667
|
-
pub const CM_CDMASK_RESDES: CM_CDMASK = 2u32;
|
668
|
-
pub const CM_CDMASK_VALID: CM_CDMASK = 15u32;
|
669
|
-
pub const CM_CLASS_PROPERTY_BITS: u32 = 1u32;
|
670
|
-
pub const CM_CLASS_PROPERTY_INSTALLER: u32 = 0u32;
|
671
|
-
pub const CM_CLASS_PROPERTY_INTERFACE: u32 = 1u32;
|
672
|
-
pub const CM_CREATE_DEVINST_BITS: u32 = 15u32;
|
673
|
-
pub const CM_CREATE_DEVINST_DO_NOT_INSTALL: u32 = 8u32;
|
674
|
-
pub const CM_CREATE_DEVINST_GENERATE_ID: u32 = 4u32;
|
675
|
-
pub const CM_CREATE_DEVINST_NORMAL: u32 = 0u32;
|
676
|
-
pub const CM_CREATE_DEVINST_NO_WAIT_INSTALL: u32 = 1u32;
|
677
|
-
pub const CM_CREATE_DEVINST_PHANTOM: u32 = 2u32;
|
678
|
-
pub const CM_CREATE_DEVNODE_BITS: u32 = 15u32;
|
679
|
-
pub const CM_CREATE_DEVNODE_DO_NOT_INSTALL: u32 = 8u32;
|
680
|
-
pub const CM_CREATE_DEVNODE_GENERATE_ID: u32 = 4u32;
|
681
|
-
pub const CM_CREATE_DEVNODE_NORMAL: u32 = 0u32;
|
682
|
-
pub const CM_CREATE_DEVNODE_NO_WAIT_INSTALL: u32 = 1u32;
|
683
|
-
pub const CM_CREATE_DEVNODE_PHANTOM: u32 = 2u32;
|
684
|
-
pub const CM_CRP_CHARACTERISTICS: u32 = 28u32;
|
685
|
-
pub const CM_CRP_DEVTYPE: u32 = 26u32;
|
686
|
-
pub const CM_CRP_EXCLUSIVE: u32 = 27u32;
|
687
|
-
pub const CM_CRP_LOWERFILTERS: u32 = 19u32;
|
688
|
-
pub const CM_CRP_MAX: u32 = 37u32;
|
689
|
-
pub const CM_CRP_MIN: u32 = 1u32;
|
690
|
-
pub const CM_CRP_SECURITY: u32 = 24u32;
|
691
|
-
pub const CM_CRP_SECURITY_SDS: u32 = 25u32;
|
692
|
-
pub const CM_CRP_UPPERFILTERS: u32 = 18u32;
|
693
|
-
pub const CM_CUSTOMDEVPROP_BITS: u32 = 1u32;
|
694
|
-
pub const CM_CUSTOMDEVPROP_MERGE_MULTISZ: u32 = 1u32;
|
695
|
-
pub const CM_DELETE_CLASS_BITS: u32 = 3u32;
|
696
|
-
pub const CM_DELETE_CLASS_INTERFACE: u32 = 2u32;
|
697
|
-
pub const CM_DELETE_CLASS_ONLY: u32 = 0u32;
|
698
|
-
pub const CM_DELETE_CLASS_SUBKEYS: u32 = 1u32;
|
699
|
-
pub const CM_DETECT_BITS: u32 = 2147483655u32;
|
700
|
-
pub const CM_DETECT_CRASHED: u32 = 2u32;
|
701
|
-
pub const CM_DETECT_HWPROF_FIRST_BOOT: u32 = 4u32;
|
702
|
-
pub const CM_DETECT_NEW_PROFILE: u32 = 1u32;
|
703
|
-
pub const CM_DETECT_RUN: u32 = 2147483648u32;
|
704
|
-
pub const CM_DEVCAP_DOCKDEVICE: CM_DEVCAP = 8u32;
|
705
|
-
pub const CM_DEVCAP_EJECTSUPPORTED: CM_DEVCAP = 2u32;
|
706
|
-
pub const CM_DEVCAP_HARDWAREDISABLED: CM_DEVCAP = 256u32;
|
707
|
-
pub const CM_DEVCAP_LOCKSUPPORTED: CM_DEVCAP = 1u32;
|
708
|
-
pub const CM_DEVCAP_NONDYNAMIC: CM_DEVCAP = 512u32;
|
709
|
-
pub const CM_DEVCAP_RAWDEVICEOK: CM_DEVCAP = 64u32;
|
710
|
-
pub const CM_DEVCAP_REMOVABLE: CM_DEVCAP = 4u32;
|
711
|
-
pub const CM_DEVCAP_SECUREDEVICE: CM_DEVCAP = 1024u32;
|
712
|
-
pub const CM_DEVCAP_SILENTINSTALL: CM_DEVCAP = 32u32;
|
713
|
-
pub const CM_DEVCAP_SURPRISEREMOVALOK: CM_DEVCAP = 128u32;
|
714
|
-
pub const CM_DEVCAP_UNIQUEID: CM_DEVCAP = 16u32;
|
715
|
-
pub const CM_DEVICE_PANEL_EDGE_BOTTOM: u32 = 2u32;
|
716
|
-
pub const CM_DEVICE_PANEL_EDGE_LEFT: u32 = 3u32;
|
717
|
-
pub const CM_DEVICE_PANEL_EDGE_RIGHT: u32 = 4u32;
|
718
|
-
pub const CM_DEVICE_PANEL_EDGE_TOP: u32 = 1u32;
|
719
|
-
pub const CM_DEVICE_PANEL_EDGE_UNKNOWN: u32 = 0u32;
|
720
|
-
pub const CM_DEVICE_PANEL_JOINT_TYPE_HINGE: u32 = 2u32;
|
721
|
-
pub const CM_DEVICE_PANEL_JOINT_TYPE_PIVOT: u32 = 3u32;
|
722
|
-
pub const CM_DEVICE_PANEL_JOINT_TYPE_PLANAR: u32 = 1u32;
|
723
|
-
pub const CM_DEVICE_PANEL_JOINT_TYPE_SWIVEL: u32 = 4u32;
|
724
|
-
pub const CM_DEVICE_PANEL_JOINT_TYPE_UNKNOWN: u32 = 0u32;
|
725
|
-
pub const CM_DEVICE_PANEL_ORIENTATION_HORIZONTAL: u32 = 0u32;
|
726
|
-
pub const CM_DEVICE_PANEL_ORIENTATION_VERTICAL: u32 = 1u32;
|
727
|
-
pub const CM_DEVICE_PANEL_SHAPE_OVAL: u32 = 2u32;
|
728
|
-
pub const CM_DEVICE_PANEL_SHAPE_RECTANGLE: u32 = 1u32;
|
729
|
-
pub const CM_DEVICE_PANEL_SHAPE_UNKNOWN: u32 = 0u32;
|
730
|
-
pub const CM_DEVICE_PANEL_SIDE_BACK: u32 = 6u32;
|
731
|
-
pub const CM_DEVICE_PANEL_SIDE_BOTTOM: u32 = 2u32;
|
732
|
-
pub const CM_DEVICE_PANEL_SIDE_FRONT: u32 = 5u32;
|
733
|
-
pub const CM_DEVICE_PANEL_SIDE_LEFT: u32 = 3u32;
|
734
|
-
pub const CM_DEVICE_PANEL_SIDE_RIGHT: u32 = 4u32;
|
735
|
-
pub const CM_DEVICE_PANEL_SIDE_TOP: u32 = 1u32;
|
736
|
-
pub const CM_DEVICE_PANEL_SIDE_UNKNOWN: u32 = 0u32;
|
737
|
-
pub const CM_DISABLE_ABSOLUTE: u32 = 1u32;
|
738
|
-
pub const CM_DISABLE_BITS: u32 = 15u32;
|
739
|
-
pub const CM_DISABLE_HARDWARE: u32 = 2u32;
|
740
|
-
pub const CM_DISABLE_PERSIST: u32 = 8u32;
|
741
|
-
pub const CM_DISABLE_POLITE: u32 = 0u32;
|
742
|
-
pub const CM_DISABLE_UI_NOT_OK: u32 = 4u32;
|
743
|
-
pub const CM_DRP_ADDRESS: u32 = 29u32;
|
744
|
-
pub const CM_DRP_BASE_CONTAINERID: u32 = 37u32;
|
745
|
-
pub const CM_DRP_BUSNUMBER: u32 = 22u32;
|
746
|
-
pub const CM_DRP_BUSTYPEGUID: u32 = 20u32;
|
747
|
-
pub const CM_DRP_CAPABILITIES: u32 = 16u32;
|
748
|
-
pub const CM_DRP_CHARACTERISTICS: u32 = 28u32;
|
749
|
-
pub const CM_DRP_CLASS: u32 = 8u32;
|
750
|
-
pub const CM_DRP_CLASSGUID: u32 = 9u32;
|
751
|
-
pub const CM_DRP_COMPATIBLEIDS: u32 = 3u32;
|
752
|
-
pub const CM_DRP_CONFIGFLAGS: u32 = 11u32;
|
753
|
-
pub const CM_DRP_DEVICEDESC: u32 = 1u32;
|
754
|
-
pub const CM_DRP_DEVICE_POWER_DATA: u32 = 31u32;
|
755
|
-
pub const CM_DRP_DEVTYPE: u32 = 26u32;
|
756
|
-
pub const CM_DRP_DRIVER: u32 = 10u32;
|
757
|
-
pub const CM_DRP_ENUMERATOR_NAME: u32 = 23u32;
|
758
|
-
pub const CM_DRP_EXCLUSIVE: u32 = 27u32;
|
759
|
-
pub const CM_DRP_FRIENDLYNAME: u32 = 13u32;
|
760
|
-
pub const CM_DRP_HARDWAREID: u32 = 2u32;
|
761
|
-
pub const CM_DRP_INSTALL_STATE: u32 = 35u32;
|
762
|
-
pub const CM_DRP_LEGACYBUSTYPE: u32 = 21u32;
|
763
|
-
pub const CM_DRP_LOCATION_INFORMATION: u32 = 14u32;
|
764
|
-
pub const CM_DRP_LOCATION_PATHS: u32 = 36u32;
|
765
|
-
pub const CM_DRP_LOWERFILTERS: u32 = 19u32;
|
766
|
-
pub const CM_DRP_MAX: u32 = 37u32;
|
767
|
-
pub const CM_DRP_MFG: u32 = 12u32;
|
768
|
-
pub const CM_DRP_MIN: u32 = 1u32;
|
769
|
-
pub const CM_DRP_PHYSICAL_DEVICE_OBJECT_NAME: u32 = 15u32;
|
770
|
-
pub const CM_DRP_REMOVAL_POLICY: u32 = 32u32;
|
771
|
-
pub const CM_DRP_REMOVAL_POLICY_HW_DEFAULT: u32 = 33u32;
|
772
|
-
pub const CM_DRP_REMOVAL_POLICY_OVERRIDE: u32 = 34u32;
|
773
|
-
pub const CM_DRP_SECURITY: u32 = 24u32;
|
774
|
-
pub const CM_DRP_SECURITY_SDS: u32 = 25u32;
|
775
|
-
pub const CM_DRP_SERVICE: u32 = 5u32;
|
776
|
-
pub const CM_DRP_UI_NUMBER: u32 = 17u32;
|
777
|
-
pub const CM_DRP_UI_NUMBER_DESC_FORMAT: u32 = 30u32;
|
778
|
-
pub const CM_DRP_UNUSED0: u32 = 4u32;
|
779
|
-
pub const CM_DRP_UNUSED1: u32 = 6u32;
|
780
|
-
pub const CM_DRP_UNUSED2: u32 = 7u32;
|
781
|
-
pub const CM_DRP_UPPERFILTERS: u32 = 18u32;
|
782
|
-
pub const CM_ENUMERATE_CLASSES_BITS: CM_ENUMERATE_FLAGS = 1u32;
|
783
|
-
pub const CM_ENUMERATE_CLASSES_INSTALLER: CM_ENUMERATE_FLAGS = 0u32;
|
784
|
-
pub const CM_ENUMERATE_CLASSES_INTERFACE: CM_ENUMERATE_FLAGS = 1u32;
|
785
|
-
pub const CM_GETIDLIST_DONOTGENERATE: u32 = 268435520u32;
|
786
|
-
pub const CM_GETIDLIST_FILTER_BITS: u32 = 268435583u32;
|
787
|
-
pub const CM_GETIDLIST_FILTER_BUSRELATIONS: u32 = 32u32;
|
788
|
-
pub const CM_GETIDLIST_FILTER_CLASS: u32 = 512u32;
|
789
|
-
pub const CM_GETIDLIST_FILTER_EJECTRELATIONS: u32 = 4u32;
|
790
|
-
pub const CM_GETIDLIST_FILTER_ENUMERATOR: u32 = 1u32;
|
791
|
-
pub const CM_GETIDLIST_FILTER_NONE: u32 = 0u32;
|
792
|
-
pub const CM_GETIDLIST_FILTER_POWERRELATIONS: u32 = 16u32;
|
793
|
-
pub const CM_GETIDLIST_FILTER_PRESENT: u32 = 256u32;
|
794
|
-
pub const CM_GETIDLIST_FILTER_REMOVALRELATIONS: u32 = 8u32;
|
795
|
-
pub const CM_GETIDLIST_FILTER_SERVICE: u32 = 2u32;
|
796
|
-
pub const CM_GETIDLIST_FILTER_TRANSPORTRELATIONS: u32 = 128u32;
|
797
|
-
pub const CM_GET_DEVICE_INTERFACE_LIST_ALL_DEVICES: CM_GET_DEVICE_INTERFACE_LIST_FLAGS = 1u32;
|
798
|
-
pub const CM_GET_DEVICE_INTERFACE_LIST_BITS: CM_GET_DEVICE_INTERFACE_LIST_FLAGS = 1u32;
|
799
|
-
pub const CM_GET_DEVICE_INTERFACE_LIST_PRESENT: CM_GET_DEVICE_INTERFACE_LIST_FLAGS = 0u32;
|
800
|
-
pub const CM_GLOBAL_STATE_CAN_DO_UI: u32 = 1u32;
|
801
|
-
pub const CM_GLOBAL_STATE_DETECTION_PENDING: u32 = 16u32;
|
802
|
-
pub const CM_GLOBAL_STATE_ON_BIG_STACK: u32 = 2u32;
|
803
|
-
pub const CM_GLOBAL_STATE_REBOOT_REQUIRED: u32 = 32u32;
|
804
|
-
pub const CM_GLOBAL_STATE_SERVICES_AVAILABLE: u32 = 4u32;
|
805
|
-
pub const CM_GLOBAL_STATE_SHUTTING_DOWN: u32 = 8u32;
|
806
|
-
pub const CM_HWPI_DOCKED: u32 = 2u32;
|
807
|
-
pub const CM_HWPI_NOT_DOCKABLE: u32 = 0u32;
|
808
|
-
pub const CM_HWPI_UNDOCKED: u32 = 1u32;
|
809
|
-
pub const CM_INSTALL_STATE_FAILED_INSTALL: CM_INSTALL_STATE = 2u32;
|
810
|
-
pub const CM_INSTALL_STATE_FINISH_INSTALL: CM_INSTALL_STATE = 3u32;
|
811
|
-
pub const CM_INSTALL_STATE_INSTALLED: CM_INSTALL_STATE = 0u32;
|
812
|
-
pub const CM_INSTALL_STATE_NEEDS_REINSTALL: CM_INSTALL_STATE = 1u32;
|
813
|
-
pub const CM_LOCATE_DEVNODE_BITS: CM_LOCATE_DEVNODE_FLAGS = 7u32;
|
814
|
-
pub const CM_LOCATE_DEVNODE_CANCELREMOVE: CM_LOCATE_DEVNODE_FLAGS = 2u32;
|
815
|
-
pub const CM_LOCATE_DEVNODE_NORMAL: CM_LOCATE_DEVNODE_FLAGS = 0u32;
|
816
|
-
pub const CM_LOCATE_DEVNODE_NOVALIDATION: CM_LOCATE_DEVNODE_FLAGS = 4u32;
|
817
|
-
pub const CM_LOCATE_DEVNODE_PHANTOM: CM_LOCATE_DEVNODE_FLAGS = 1u32;
|
818
|
-
pub const CM_NAME_ATTRIBUTE_NAME_RETRIEVED_FROM_DEVICE: u32 = 1u32;
|
819
|
-
pub const CM_NAME_ATTRIBUTE_USER_ASSIGNED_NAME: u32 = 2u32;
|
820
|
-
pub const CM_NOTIFY_ACTION_DEVICECUSTOMEVENT: CM_NOTIFY_ACTION = 6i32;
|
821
|
-
pub const CM_NOTIFY_ACTION_DEVICEINSTANCEENUMERATED: CM_NOTIFY_ACTION = 7i32;
|
822
|
-
pub const CM_NOTIFY_ACTION_DEVICEINSTANCEREMOVED: CM_NOTIFY_ACTION = 9i32;
|
823
|
-
pub const CM_NOTIFY_ACTION_DEVICEINSTANCESTARTED: CM_NOTIFY_ACTION = 8i32;
|
824
|
-
pub const CM_NOTIFY_ACTION_DEVICEINTERFACEARRIVAL: CM_NOTIFY_ACTION = 0i32;
|
825
|
-
pub const CM_NOTIFY_ACTION_DEVICEINTERFACEREMOVAL: CM_NOTIFY_ACTION = 1i32;
|
826
|
-
pub const CM_NOTIFY_ACTION_DEVICEQUERYREMOVE: CM_NOTIFY_ACTION = 2i32;
|
827
|
-
pub const CM_NOTIFY_ACTION_DEVICEQUERYREMOVEFAILED: CM_NOTIFY_ACTION = 3i32;
|
828
|
-
pub const CM_NOTIFY_ACTION_DEVICEREMOVECOMPLETE: CM_NOTIFY_ACTION = 5i32;
|
829
|
-
pub const CM_NOTIFY_ACTION_DEVICEREMOVEPENDING: CM_NOTIFY_ACTION = 4i32;
|
830
|
-
pub const CM_NOTIFY_ACTION_MAX: CM_NOTIFY_ACTION = 10i32;
|
831
|
-
pub const CM_NOTIFY_FILTER_FLAG_ALL_DEVICE_INSTANCES: u32 = 2u32;
|
832
|
-
pub const CM_NOTIFY_FILTER_FLAG_ALL_INTERFACE_CLASSES: u32 = 1u32;
|
833
|
-
pub const CM_NOTIFY_FILTER_TYPE_DEVICEHANDLE: CM_NOTIFY_FILTER_TYPE = 1i32;
|
834
|
-
pub const CM_NOTIFY_FILTER_TYPE_DEVICEINSTANCE: CM_NOTIFY_FILTER_TYPE = 2i32;
|
835
|
-
pub const CM_NOTIFY_FILTER_TYPE_DEVICEINTERFACE: CM_NOTIFY_FILTER_TYPE = 0i32;
|
836
|
-
pub const CM_NOTIFY_FILTER_TYPE_MAX: CM_NOTIFY_FILTER_TYPE = 3i32;
|
837
|
-
pub const CM_OPEN_CLASS_KEY_BITS: u32 = 1u32;
|
838
|
-
pub const CM_OPEN_CLASS_KEY_INSTALLER: u32 = 0u32;
|
839
|
-
pub const CM_OPEN_CLASS_KEY_INTERFACE: u32 = 1u32;
|
840
|
-
pub const CM_PROB_BIOS_TABLE: CM_PROB = 35u32;
|
841
|
-
pub const CM_PROB_BOOT_CONFIG_CONFLICT: CM_PROB = 6u32;
|
842
|
-
pub const CM_PROB_CANT_SHARE_IRQ: CM_PROB = 30u32;
|
843
|
-
pub const CM_PROB_CONSOLE_LOCKED: CM_PROB = 55u32;
|
844
|
-
pub const CM_PROB_DEVICE_NOT_THERE: CM_PROB = 24u32;
|
845
|
-
pub const CM_PROB_DEVICE_RESET: CM_PROB = 54u32;
|
846
|
-
pub const CM_PROB_DEVLOADER_FAILED: CM_PROB = 2u32;
|
847
|
-
pub const CM_PROB_DEVLOADER_NOT_FOUND: CM_PROB = 8u32;
|
848
|
-
pub const CM_PROB_DEVLOADER_NOT_READY: CM_PROB = 23u32;
|
849
|
-
pub const CM_PROB_DISABLED: CM_PROB = 22u32;
|
850
|
-
pub const CM_PROB_DISABLED_SERVICE: CM_PROB = 32u32;
|
851
|
-
pub const CM_PROB_DRIVER_BLOCKED: CM_PROB = 48u32;
|
852
|
-
pub const CM_PROB_DRIVER_FAILED_LOAD: CM_PROB = 39u32;
|
853
|
-
pub const CM_PROB_DRIVER_FAILED_PRIOR_UNLOAD: CM_PROB = 38u32;
|
854
|
-
pub const CM_PROB_DRIVER_SERVICE_KEY_INVALID: CM_PROB = 40u32;
|
855
|
-
pub const CM_PROB_DUPLICATE_DEVICE: CM_PROB = 42u32;
|
856
|
-
pub const CM_PROB_ENTRY_IS_WRONG_TYPE: CM_PROB = 4u32;
|
857
|
-
pub const CM_PROB_FAILED_ADD: CM_PROB = 31u32;
|
858
|
-
pub const CM_PROB_FAILED_DRIVER_ENTRY: CM_PROB = 37u32;
|
859
|
-
pub const CM_PROB_FAILED_FILTER: CM_PROB = 7u32;
|
860
|
-
pub const CM_PROB_FAILED_INSTALL: CM_PROB = 28u32;
|
861
|
-
pub const CM_PROB_FAILED_POST_START: CM_PROB = 43u32;
|
862
|
-
pub const CM_PROB_FAILED_START: CM_PROB = 10u32;
|
863
|
-
pub const CM_PROB_GUEST_ASSIGNMENT_FAILED: CM_PROB = 57u32;
|
864
|
-
pub const CM_PROB_HALTED: CM_PROB = 44u32;
|
865
|
-
pub const CM_PROB_HARDWARE_DISABLED: CM_PROB = 29u32;
|
866
|
-
pub const CM_PROB_HELD_FOR_EJECT: CM_PROB = 47u32;
|
867
|
-
pub const CM_PROB_INVALID_DATA: CM_PROB = 9u32;
|
868
|
-
pub const CM_PROB_IRQ_TRANSLATION_FAILED: CM_PROB = 36u32;
|
869
|
-
pub const CM_PROB_LACKED_ARBITRATOR: CM_PROB = 5u32;
|
870
|
-
pub const CM_PROB_LEGACY_SERVICE_NO_DEVICES: CM_PROB = 41u32;
|
871
|
-
pub const CM_PROB_LIAR: CM_PROB = 11u32;
|
872
|
-
pub const CM_PROB_MOVED: CM_PROB = 25u32;
|
873
|
-
pub const CM_PROB_NEED_CLASS_CONFIG: CM_PROB = 56u32;
|
874
|
-
pub const CM_PROB_NEED_RESTART: CM_PROB = 14u32;
|
875
|
-
pub const CM_PROB_NORMAL_CONFLICT: CM_PROB = 12u32;
|
876
|
-
pub const CM_PROB_NOT_CONFIGURED: CM_PROB = 1u32;
|
877
|
-
pub const CM_PROB_NOT_VERIFIED: CM_PROB = 13u32;
|
878
|
-
pub const CM_PROB_NO_SOFTCONFIG: CM_PROB = 34u32;
|
879
|
-
pub const CM_PROB_NO_VALID_LOG_CONF: CM_PROB = 27u32;
|
880
|
-
pub const CM_PROB_OUT_OF_MEMORY: CM_PROB = 3u32;
|
881
|
-
pub const CM_PROB_PARTIAL_LOG_CONF: CM_PROB = 16u32;
|
882
|
-
pub const CM_PROB_PHANTOM: CM_PROB = 45u32;
|
883
|
-
pub const CM_PROB_REENUMERATION: CM_PROB = 15u32;
|
884
|
-
pub const CM_PROB_REGISTRY: CM_PROB = 19u32;
|
885
|
-
pub const CM_PROB_REGISTRY_TOO_LARGE: CM_PROB = 49u32;
|
886
|
-
pub const CM_PROB_REINSTALL: CM_PROB = 18u32;
|
887
|
-
pub const CM_PROB_SETPROPERTIES_FAILED: CM_PROB = 50u32;
|
888
|
-
pub const CM_PROB_SYSTEM_SHUTDOWN: CM_PROB = 46u32;
|
889
|
-
pub const CM_PROB_TOO_EARLY: CM_PROB = 26u32;
|
890
|
-
pub const CM_PROB_TRANSLATION_FAILED: CM_PROB = 33u32;
|
891
|
-
pub const CM_PROB_UNKNOWN_RESOURCE: CM_PROB = 17u32;
|
892
|
-
pub const CM_PROB_UNSIGNED_DRIVER: CM_PROB = 52u32;
|
893
|
-
pub const CM_PROB_USED_BY_DEBUGGER: CM_PROB = 53u32;
|
894
|
-
pub const CM_PROB_VXDLDR: CM_PROB = 20u32;
|
895
|
-
pub const CM_PROB_WAITING_ON_DEPENDENCY: CM_PROB = 51u32;
|
896
|
-
pub const CM_PROB_WILL_BE_REMOVED: CM_PROB = 21u32;
|
897
|
-
pub const CM_QUERY_ARBITRATOR_BITS: u32 = 1u32;
|
898
|
-
pub const CM_QUERY_ARBITRATOR_RAW: u32 = 0u32;
|
899
|
-
pub const CM_QUERY_ARBITRATOR_TRANSLATED: u32 = 1u32;
|
900
|
-
pub const CM_QUERY_REMOVE_UI_NOT_OK: u32 = 1u32;
|
901
|
-
pub const CM_QUERY_REMOVE_UI_OK: u32 = 0u32;
|
902
|
-
pub const CM_REENUMERATE_ASYNCHRONOUS: CM_REENUMERATE_FLAGS = 4u32;
|
903
|
-
pub const CM_REENUMERATE_BITS: CM_REENUMERATE_FLAGS = 7u32;
|
904
|
-
pub const CM_REENUMERATE_NORMAL: CM_REENUMERATE_FLAGS = 0u32;
|
905
|
-
pub const CM_REENUMERATE_RETRY_INSTALLATION: CM_REENUMERATE_FLAGS = 2u32;
|
906
|
-
pub const CM_REENUMERATE_SYNCHRONOUS: CM_REENUMERATE_FLAGS = 1u32;
|
907
|
-
pub const CM_REGISTER_DEVICE_DRIVER_BITS: u32 = 3u32;
|
908
|
-
pub const CM_REGISTER_DEVICE_DRIVER_DISABLEABLE: u32 = 1u32;
|
909
|
-
pub const CM_REGISTER_DEVICE_DRIVER_REMOVABLE: u32 = 2u32;
|
910
|
-
pub const CM_REGISTER_DEVICE_DRIVER_STATIC: u32 = 0u32;
|
911
|
-
pub const CM_REGISTRY_BITS: u32 = 769u32;
|
912
|
-
pub const CM_REGISTRY_CONFIG: u32 = 512u32;
|
913
|
-
pub const CM_REGISTRY_HARDWARE: u32 = 0u32;
|
914
|
-
pub const CM_REGISTRY_SOFTWARE: u32 = 1u32;
|
915
|
-
pub const CM_REGISTRY_USER: u32 = 256u32;
|
916
|
-
pub const CM_REMOVAL_POLICY_EXPECT_NO_REMOVAL: CM_REMOVAL_POLICY = 1u32;
|
917
|
-
pub const CM_REMOVAL_POLICY_EXPECT_ORDERLY_REMOVAL: CM_REMOVAL_POLICY = 2u32;
|
918
|
-
pub const CM_REMOVAL_POLICY_EXPECT_SURPRISE_REMOVAL: CM_REMOVAL_POLICY = 3u32;
|
919
|
-
pub const CM_REMOVE_BITS: u32 = 7u32;
|
920
|
-
pub const CM_REMOVE_DISABLE: u32 = 4u32;
|
921
|
-
pub const CM_REMOVE_NO_RESTART: u32 = 2u32;
|
922
|
-
pub const CM_REMOVE_UI_NOT_OK: u32 = 1u32;
|
923
|
-
pub const CM_REMOVE_UI_OK: u32 = 0u32;
|
924
|
-
pub const CM_RESDES_WIDTH_32: u32 = 1u32;
|
925
|
-
pub const CM_RESDES_WIDTH_64: u32 = 2u32;
|
926
|
-
pub const CM_RESDES_WIDTH_BITS: u32 = 3u32;
|
927
|
-
pub const CM_RESDES_WIDTH_DEFAULT: u32 = 0u32;
|
928
|
-
pub const CM_SETUP_BITS: u32 = 15u32;
|
929
|
-
pub const CM_SETUP_DEVINST_CONFIG: u32 = 5u32;
|
930
|
-
pub const CM_SETUP_DEVINST_CONFIG_CLASS: u32 = 6u32;
|
931
|
-
pub const CM_SETUP_DEVINST_CONFIG_EXTENSIONS: u32 = 7u32;
|
932
|
-
pub const CM_SETUP_DEVINST_CONFIG_RESET: u32 = 8u32;
|
933
|
-
pub const CM_SETUP_DEVINST_READY: u32 = 0u32;
|
934
|
-
pub const CM_SETUP_DEVINST_RESET: u32 = 4u32;
|
935
|
-
pub const CM_SETUP_DEVNODE_CONFIG: u32 = 5u32;
|
936
|
-
pub const CM_SETUP_DEVNODE_CONFIG_CLASS: u32 = 6u32;
|
937
|
-
pub const CM_SETUP_DEVNODE_CONFIG_EXTENSIONS: u32 = 7u32;
|
938
|
-
pub const CM_SETUP_DEVNODE_CONFIG_RESET: u32 = 8u32;
|
939
|
-
pub const CM_SETUP_DEVNODE_READY: u32 = 0u32;
|
940
|
-
pub const CM_SETUP_DEVNODE_RESET: u32 = 4u32;
|
941
|
-
pub const CM_SETUP_DOWNLOAD: u32 = 1u32;
|
942
|
-
pub const CM_SETUP_PROP_CHANGE: u32 = 3u32;
|
943
|
-
pub const CM_SETUP_WRITE_LOG_CONFS: u32 = 2u32;
|
944
|
-
pub const CM_SET_DEVINST_PROBLEM_BITS: u32 = 1u32;
|
945
|
-
pub const CM_SET_DEVINST_PROBLEM_NORMAL: u32 = 0u32;
|
946
|
-
pub const CM_SET_DEVINST_PROBLEM_OVERRIDE: u32 = 1u32;
|
947
|
-
pub const CM_SET_DEVNODE_PROBLEM_BITS: u32 = 1u32;
|
948
|
-
pub const CM_SET_DEVNODE_PROBLEM_NORMAL: u32 = 0u32;
|
949
|
-
pub const CM_SET_DEVNODE_PROBLEM_OVERRIDE: u32 = 1u32;
|
950
|
-
pub const CM_SET_HW_PROF_FLAGS_BITS: u32 = 1u32;
|
951
|
-
pub const CM_SET_HW_PROF_FLAGS_UI_NOT_OK: u32 = 1u32;
|
952
|
-
pub const CONFIGFLAG_BOOT_DEVICE: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 262144u32;
|
953
|
-
pub const CONFIGFLAG_CANTSTOPACHILD: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 128u32;
|
954
|
-
pub const CONFIGFLAG_DISABLED: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 1u32;
|
955
|
-
pub const CONFIGFLAG_FAILEDINSTALL: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 64u32;
|
956
|
-
pub const CONFIGFLAG_FINISHINSTALL_ACTION: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 131072u32;
|
957
|
-
pub const CONFIGFLAG_FINISHINSTALL_UI: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 65536u32;
|
958
|
-
pub const CONFIGFLAG_FINISH_INSTALL: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 1024u32;
|
959
|
-
pub const CONFIGFLAG_IGNORE_BOOT_LC: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 8u32;
|
960
|
-
pub const CONFIGFLAG_MANUAL_INSTALL: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 4u32;
|
961
|
-
pub const CONFIGFLAG_NEEDS_CLASS_CONFIG: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 524288u32;
|
962
|
-
pub const CONFIGFLAG_NEEDS_FORCED_CONFIG: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 2048u32;
|
963
|
-
pub const CONFIGFLAG_NETBOOT_CARD: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 4096u32;
|
964
|
-
pub const CONFIGFLAG_NET_BOOT: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 16u32;
|
965
|
-
pub const CONFIGFLAG_NOREMOVEEXIT: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 512u32;
|
966
|
-
pub const CONFIGFLAG_OKREMOVEROM: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 256u32;
|
967
|
-
pub const CONFIGFLAG_PARTIAL_LOG_CONF: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 8192u32;
|
968
|
-
pub const CONFIGFLAG_REINSTALL: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 32u32;
|
969
|
-
pub const CONFIGFLAG_REMOVED: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 2u32;
|
970
|
-
pub const CONFIGFLAG_SUPPRESS_SURPRISE: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 16384u32;
|
971
|
-
pub const CONFIGFLAG_VERIFY_HARDWARE: SETUP_DI_DEVICE_CONFIGURATION_FLAGS = 32768u32;
|
972
|
-
pub const CONFIGMG_VERSION: u32 = 1024u32;
|
973
|
-
pub const COPYFLG_FORCE_FILE_IN_USE: u32 = 8u32;
|
974
|
-
pub const COPYFLG_IN_USE_TRY_RENAME: u32 = 16384u32;
|
975
|
-
pub const COPYFLG_NODECOMP: u32 = 2048u32;
|
976
|
-
pub const COPYFLG_NOPRUNE: u32 = 8192u32;
|
977
|
-
pub const COPYFLG_NOSKIP: u32 = 2u32;
|
978
|
-
pub const COPYFLG_NOVERSIONCHECK: u32 = 4u32;
|
979
|
-
pub const COPYFLG_NO_OVERWRITE: u32 = 16u32;
|
980
|
-
pub const COPYFLG_NO_VERSION_DIALOG: u32 = 32u32;
|
981
|
-
pub const COPYFLG_OVERWRITE_OLDER_ONLY: u32 = 64u32;
|
982
|
-
pub const COPYFLG_PROTECTED_WINDOWS_DRIVER_FILE: u32 = 256u32;
|
983
|
-
pub const COPYFLG_REPLACEONLY: u32 = 1024u32;
|
984
|
-
pub const COPYFLG_REPLACE_BOOT_FILE: u32 = 4096u32;
|
985
|
-
pub const COPYFLG_WARN_IF_SKIP: u32 = 1u32;
|
986
|
-
pub const CR_ACCESS_DENIED: CONFIGRET = 51u32;
|
987
|
-
pub const CR_ALREADY_SUCH_DEVINST: CONFIGRET = 16u32;
|
988
|
-
pub const CR_ALREADY_SUCH_DEVNODE: CONFIGRET = 16u32;
|
989
|
-
pub const CR_APM_VETOED: CONFIGRET = 24u32;
|
990
|
-
pub const CR_BUFFER_SMALL: CONFIGRET = 26u32;
|
991
|
-
pub const CR_CALL_NOT_IMPLEMENTED: CONFIGRET = 52u32;
|
992
|
-
pub const CR_CANT_SHARE_IRQ: CONFIGRET = 43u32;
|
993
|
-
pub const CR_CREATE_BLOCKED: CONFIGRET = 21u32;
|
994
|
-
pub const CR_DEFAULT: CONFIGRET = 1u32;
|
995
|
-
pub const CR_DEVICE_INTERFACE_ACTIVE: CONFIGRET = 54u32;
|
996
|
-
pub const CR_DEVICE_NOT_THERE: CONFIGRET = 36u32;
|
997
|
-
pub const CR_DEVINST_HAS_REQS: CONFIGRET = 10u32;
|
998
|
-
pub const CR_DEVLOADER_NOT_READY: CONFIGRET = 33u32;
|
999
|
-
pub const CR_DEVNODE_HAS_REQS: CONFIGRET = 10u32;
|
1000
|
-
pub const CR_DLVXD_NOT_FOUND: CONFIGRET = 12u32;
|
1001
|
-
pub const CR_FAILURE: CONFIGRET = 19u32;
|
1002
|
-
pub const CR_FREE_RESOURCES: CONFIGRET = 41u32;
|
1003
|
-
pub const CR_INVALID_API: CONFIGRET = 32u32;
|
1004
|
-
pub const CR_INVALID_ARBITRATOR: CONFIGRET = 8u32;
|
1005
|
-
pub const CR_INVALID_CONFLICT_LIST: CONFIGRET = 57u32;
|
1006
|
-
pub const CR_INVALID_DATA: CONFIGRET = 31u32;
|
1007
|
-
pub const CR_INVALID_DEVICE_ID: CONFIGRET = 30u32;
|
1008
|
-
pub const CR_INVALID_DEVINST: CONFIGRET = 5u32;
|
1009
|
-
pub const CR_INVALID_DEVNODE: CONFIGRET = 5u32;
|
1010
|
-
pub const CR_INVALID_FLAG: CONFIGRET = 4u32;
|
1011
|
-
pub const CR_INVALID_INDEX: CONFIGRET = 58u32;
|
1012
|
-
pub const CR_INVALID_LOAD_TYPE: CONFIGRET = 25u32;
|
1013
|
-
pub const CR_INVALID_LOG_CONF: CONFIGRET = 7u32;
|
1014
|
-
pub const CR_INVALID_MACHINENAME: CONFIGRET = 47u32;
|
1015
|
-
pub const CR_INVALID_NODELIST: CONFIGRET = 9u32;
|
1016
|
-
pub const CR_INVALID_POINTER: CONFIGRET = 3u32;
|
1017
|
-
pub const CR_INVALID_PRIORITY: CONFIGRET = 39u32;
|
1018
|
-
pub const CR_INVALID_PROPERTY: CONFIGRET = 53u32;
|
1019
|
-
pub const CR_INVALID_RANGE: CONFIGRET = 18u32;
|
1020
|
-
pub const CR_INVALID_RANGE_LIST: CONFIGRET = 17u32;
|
1021
|
-
pub const CR_INVALID_REFERENCE_STRING: CONFIGRET = 56u32;
|
1022
|
-
pub const CR_INVALID_RESOURCEID: CONFIGRET = 11u32;
|
1023
|
-
pub const CR_INVALID_RES_DES: CONFIGRET = 6u32;
|
1024
|
-
pub const CR_INVALID_STRUCTURE_SIZE: CONFIGRET = 59u32;
|
1025
|
-
pub const CR_MACHINE_UNAVAILABLE: CONFIGRET = 49u32;
|
1026
|
-
pub const CR_NEED_RESTART: CONFIGRET = 34u32;
|
1027
|
-
pub const CR_NOT_DISABLEABLE: CONFIGRET = 40u32;
|
1028
|
-
pub const CR_NOT_SYSTEM_VM: CONFIGRET = 22u32;
|
1029
|
-
pub const CR_NO_ARBITRATOR: CONFIGRET = 27u32;
|
1030
|
-
pub const CR_NO_CM_SERVICES: CONFIGRET = 50u32;
|
1031
|
-
pub const CR_NO_DEPENDENT: CONFIGRET = 44u32;
|
1032
|
-
pub const CR_NO_MORE_HW_PROFILES: CONFIGRET = 35u32;
|
1033
|
-
pub const CR_NO_MORE_LOG_CONF: CONFIGRET = 14u32;
|
1034
|
-
pub const CR_NO_MORE_RES_DES: CONFIGRET = 15u32;
|
1035
|
-
pub const CR_NO_REGISTRY_HANDLE: CONFIGRET = 28u32;
|
1036
|
-
pub const CR_NO_SUCH_DEVICE_INTERFACE: CONFIGRET = 55u32;
|
1037
|
-
pub const CR_NO_SUCH_DEVINST: CONFIGRET = 13u32;
|
1038
|
-
pub const CR_NO_SUCH_DEVNODE: CONFIGRET = 13u32;
|
1039
|
-
pub const CR_NO_SUCH_LOGICAL_DEV: CONFIGRET = 20u32;
|
1040
|
-
pub const CR_NO_SUCH_REGISTRY_KEY: CONFIGRET = 46u32;
|
1041
|
-
pub const CR_NO_SUCH_VALUE: CONFIGRET = 37u32;
|
1042
|
-
pub const CR_OUT_OF_MEMORY: CONFIGRET = 2u32;
|
1043
|
-
pub const CR_QUERY_VETOED: CONFIGRET = 42u32;
|
1044
|
-
pub const CR_REGISTRY_ERROR: CONFIGRET = 29u32;
|
1045
|
-
pub const CR_REMOTE_COMM_FAILURE: CONFIGRET = 48u32;
|
1046
|
-
pub const CR_REMOVE_VETOED: CONFIGRET = 23u32;
|
1047
|
-
pub const CR_SAME_RESOURCES: CONFIGRET = 45u32;
|
1048
|
-
pub const CR_SUCCESS: CONFIGRET = 0u32;
|
1049
|
-
pub const CR_WRONG_TYPE: CONFIGRET = 38u32;
|
1050
|
-
pub const DELFLG_IN_USE: u32 = 1u32;
|
1051
|
-
pub const DELFLG_IN_USE1: u32 = 65536u32;
|
1052
|
-
pub const DIBCI_NODISPLAYCLASS: u32 = 2u32;
|
1053
|
-
pub const DIBCI_NOINSTALLCLASS: u32 = 1u32;
|
1054
|
-
pub const DICD_GENERATE_ID: SETUP_DI_DEVICE_CREATION_FLAGS = 1u32;
|
1055
|
-
pub const DICD_INHERIT_CLASSDRVS: SETUP_DI_DEVICE_CREATION_FLAGS = 2u32;
|
1056
|
-
pub const DICLASSPROP_INSTALLER: u32 = 1u32;
|
1057
|
-
pub const DICLASSPROP_INTERFACE: u32 = 2u32;
|
1058
|
-
pub const DICS_DISABLE: SETUP_DI_STATE_CHANGE = 2u32;
|
1059
|
-
pub const DICS_ENABLE: SETUP_DI_STATE_CHANGE = 1u32;
|
1060
|
-
pub const DICS_FLAG_CONFIGGENERAL: SETUP_DI_PROPERTY_CHANGE_SCOPE = 4u32;
|
1061
|
-
pub const DICS_FLAG_CONFIGSPECIFIC: SETUP_DI_PROPERTY_CHANGE_SCOPE = 2u32;
|
1062
|
-
pub const DICS_FLAG_GLOBAL: SETUP_DI_PROPERTY_CHANGE_SCOPE = 1u32;
|
1063
|
-
pub const DICS_PROPCHANGE: SETUP_DI_STATE_CHANGE = 3u32;
|
1064
|
-
pub const DICS_START: SETUP_DI_STATE_CHANGE = 4u32;
|
1065
|
-
pub const DICS_STOP: SETUP_DI_STATE_CHANGE = 5u32;
|
1066
|
-
pub const DICUSTOMDEVPROP_MERGE_MULTISZ: u32 = 1u32;
|
1067
|
-
pub const DIF_ADDPROPERTYPAGE_ADVANCED: DI_FUNCTION = 35u32;
|
1068
|
-
pub const DIF_ADDPROPERTYPAGE_BASIC: DI_FUNCTION = 36u32;
|
1069
|
-
pub const DIF_ADDREMOTEPROPERTYPAGE_ADVANCED: DI_FUNCTION = 40u32;
|
1070
|
-
pub const DIF_ALLOW_INSTALL: DI_FUNCTION = 24u32;
|
1071
|
-
pub const DIF_ASSIGNRESOURCES: DI_FUNCTION = 3u32;
|
1072
|
-
pub const DIF_CALCDISKSPACE: DI_FUNCTION = 11u32;
|
1073
|
-
pub const DIF_DESTROYPRIVATEDATA: DI_FUNCTION = 12u32;
|
1074
|
-
pub const DIF_DESTROYWIZARDDATA: DI_FUNCTION = 17u32;
|
1075
|
-
pub const DIF_DETECT: DI_FUNCTION = 15u32;
|
1076
|
-
pub const DIF_DETECTCANCEL: DI_FUNCTION = 33u32;
|
1077
|
-
pub const DIF_DETECTVERIFY: DI_FUNCTION = 20u32;
|
1078
|
-
pub const DIF_ENABLECLASS: DI_FUNCTION = 19u32;
|
1079
|
-
pub const DIF_FINISHINSTALL_ACTION: DI_FUNCTION = 42u32;
|
1080
|
-
pub const DIF_FIRSTTIMESETUP: DI_FUNCTION = 6u32;
|
1081
|
-
pub const DIF_FOUNDDEVICE: DI_FUNCTION = 7u32;
|
1082
|
-
pub const DIF_INSTALLCLASSDRIVERS: DI_FUNCTION = 10u32;
|
1083
|
-
pub const DIF_INSTALLDEVICE: DI_FUNCTION = 2u32;
|
1084
|
-
pub const DIF_INSTALLDEVICEFILES: DI_FUNCTION = 21u32;
|
1085
|
-
pub const DIF_INSTALLINTERFACES: DI_FUNCTION = 32u32;
|
1086
|
-
pub const DIF_INSTALLWIZARD: DI_FUNCTION = 16u32;
|
1087
|
-
pub const DIF_MOVEDEVICE: DI_FUNCTION = 14u32;
|
1088
|
-
pub const DIF_NEWDEVICEWIZARD_FINISHINSTALL: DI_FUNCTION = 30u32;
|
1089
|
-
pub const DIF_NEWDEVICEWIZARD_POSTANALYZE: DI_FUNCTION = 29u32;
|
1090
|
-
pub const DIF_NEWDEVICEWIZARD_PREANALYZE: DI_FUNCTION = 28u32;
|
1091
|
-
pub const DIF_NEWDEVICEWIZARD_PRESELECT: DI_FUNCTION = 26u32;
|
1092
|
-
pub const DIF_NEWDEVICEWIZARD_SELECT: DI_FUNCTION = 27u32;
|
1093
|
-
pub const DIF_POWERMESSAGEWAKE: DI_FUNCTION = 39u32;
|
1094
|
-
pub const DIF_PROPERTIES: DI_FUNCTION = 4u32;
|
1095
|
-
pub const DIF_PROPERTYCHANGE: DI_FUNCTION = 18u32;
|
1096
|
-
pub const DIF_REGISTERDEVICE: DI_FUNCTION = 25u32;
|
1097
|
-
pub const DIF_REGISTER_COINSTALLERS: DI_FUNCTION = 34u32;
|
1098
|
-
pub const DIF_REMOVE: DI_FUNCTION = 5u32;
|
1099
|
-
pub const DIF_RESERVED1: DI_FUNCTION = 37u32;
|
1100
|
-
pub const DIF_RESERVED2: DI_FUNCTION = 48u32;
|
1101
|
-
pub const DIF_SELECTBESTCOMPATDRV: DI_FUNCTION = 23u32;
|
1102
|
-
pub const DIF_SELECTCLASSDRIVERS: DI_FUNCTION = 8u32;
|
1103
|
-
pub const DIF_SELECTDEVICE: DI_FUNCTION = 1u32;
|
1104
|
-
pub const DIF_TROUBLESHOOTER: DI_FUNCTION = 38u32;
|
1105
|
-
pub const DIF_UNREMOVE: DI_FUNCTION = 22u32;
|
1106
|
-
pub const DIF_UNUSED1: DI_FUNCTION = 31u32;
|
1107
|
-
pub const DIF_UPDATEDRIVER_UI: DI_FUNCTION = 41u32;
|
1108
|
-
pub const DIF_VALIDATECLASSDRIVERS: DI_FUNCTION = 9u32;
|
1109
|
-
pub const DIF_VALIDATEDRIVER: DI_FUNCTION = 13u32;
|
1110
|
-
pub const DIGCDP_FLAG_ADVANCED: u32 = 2u32;
|
1111
|
-
pub const DIGCDP_FLAG_BASIC: u32 = 1u32;
|
1112
|
-
pub const DIGCDP_FLAG_REMOTE_ADVANCED: u32 = 4u32;
|
1113
|
-
pub const DIGCDP_FLAG_REMOTE_BASIC: u32 = 3u32;
|
1114
|
-
pub const DIGCF_ALLCLASSES: SETUP_DI_GET_CLASS_DEVS_FLAGS = 4u32;
|
1115
|
-
pub const DIGCF_DEFAULT: SETUP_DI_GET_CLASS_DEVS_FLAGS = 1u32;
|
1116
|
-
pub const DIGCF_DEVICEINTERFACE: SETUP_DI_GET_CLASS_DEVS_FLAGS = 16u32;
|
1117
|
-
pub const DIGCF_INTERFACEDEVICE: SETUP_DI_GET_CLASS_DEVS_FLAGS = 16u32;
|
1118
|
-
pub const DIGCF_PRESENT: SETUP_DI_GET_CLASS_DEVS_FLAGS = 2u32;
|
1119
|
-
pub const DIGCF_PROFILE: SETUP_DI_GET_CLASS_DEVS_FLAGS = 8u32;
|
1120
|
-
pub const DIIDFLAG_BITS: DIINSTALLDEVICE_FLAGS = 15u32;
|
1121
|
-
pub const DIIDFLAG_INSTALLCOPYINFDRIVERS: DIINSTALLDEVICE_FLAGS = 8u32;
|
1122
|
-
pub const DIIDFLAG_INSTALLNULLDRIVER: DIINSTALLDEVICE_FLAGS = 4u32;
|
1123
|
-
pub const DIIDFLAG_NOFINISHINSTALLUI: DIINSTALLDEVICE_FLAGS = 2u32;
|
1124
|
-
pub const DIIDFLAG_SHOWSEARCHUI: DIINSTALLDEVICE_FLAGS = 1u32;
|
1125
|
-
pub const DIIRFLAG_BITS: DIINSTALLDRIVER_FLAGS = 106u32;
|
1126
|
-
pub const DIIRFLAG_FORCE_INF: DIINSTALLDRIVER_FLAGS = 2u32;
|
1127
|
-
pub const DIIRFLAG_HOTPATCH: DIINSTALLDRIVER_FLAGS = 8u32;
|
1128
|
-
pub const DIIRFLAG_HW_USING_THE_INF: DIINSTALLDRIVER_FLAGS = 4u32;
|
1129
|
-
pub const DIIRFLAG_INF_ALREADY_COPIED: DIINSTALLDRIVER_FLAGS = 1u32;
|
1130
|
-
pub const DIIRFLAG_INSTALL_AS_SET: DIINSTALLDRIVER_FLAGS = 64u32;
|
1131
|
-
pub const DIIRFLAG_NOBACKUP: DIINSTALLDRIVER_FLAGS = 16u32;
|
1132
|
-
pub const DIIRFLAG_PRE_CONFIGURE_INF: DIINSTALLDRIVER_FLAGS = 32u32;
|
1133
|
-
pub const DIIRFLAG_SYSTEM_BITS: DIINSTALLDRIVER_FLAGS = 127u32;
|
1134
|
-
pub const DIOCR_INSTALLER: u32 = 1u32;
|
1135
|
-
pub const DIOCR_INTERFACE: u32 = 2u32;
|
1136
|
-
pub const DIODI_NO_ADD: u32 = 1u32;
|
1137
|
-
pub const DIOD_CANCEL_REMOVE: u32 = 4u32;
|
1138
|
-
pub const DIOD_INHERIT_CLASSDRVS: u32 = 2u32;
|
1139
|
-
pub const DIREG_BOTH: u32 = 4u32;
|
1140
|
-
pub const DIREG_DEV: u32 = 1u32;
|
1141
|
-
pub const DIREG_DRV: u32 = 2u32;
|
1142
|
-
pub const DIRID_ABSOLUTE: i32 = -1i32;
|
1143
|
-
pub const DIRID_ABSOLUTE_16BIT: u32 = 65535u32;
|
1144
|
-
pub const DIRID_APPS: u32 = 24u32;
|
1145
|
-
pub const DIRID_BOOT: u32 = 30u32;
|
1146
|
-
pub const DIRID_COLOR: u32 = 23u32;
|
1147
|
-
pub const DIRID_COMMON_APPDATA: u32 = 16419u32;
|
1148
|
-
pub const DIRID_COMMON_DESKTOPDIRECTORY: u32 = 16409u32;
|
1149
|
-
pub const DIRID_COMMON_DOCUMENTS: u32 = 16430u32;
|
1150
|
-
pub const DIRID_COMMON_FAVORITES: u32 = 16415u32;
|
1151
|
-
pub const DIRID_COMMON_PROGRAMS: u32 = 16407u32;
|
1152
|
-
pub const DIRID_COMMON_STARTMENU: u32 = 16406u32;
|
1153
|
-
pub const DIRID_COMMON_STARTUP: u32 = 16408u32;
|
1154
|
-
pub const DIRID_COMMON_TEMPLATES: u32 = 16429u32;
|
1155
|
-
pub const DIRID_DEFAULT: u32 = 11u32;
|
1156
|
-
pub const DIRID_DRIVERS: u32 = 12u32;
|
1157
|
-
pub const DIRID_DRIVER_STORE: u32 = 13u32;
|
1158
|
-
pub const DIRID_FONTS: u32 = 20u32;
|
1159
|
-
pub const DIRID_HELP: u32 = 18u32;
|
1160
|
-
pub const DIRID_INF: u32 = 17u32;
|
1161
|
-
pub const DIRID_IOSUBSYS: u32 = 12u32;
|
1162
|
-
pub const DIRID_LOADER: u32 = 54u32;
|
1163
|
-
pub const DIRID_NULL: u32 = 0u32;
|
1164
|
-
pub const DIRID_PRINTPROCESSOR: u32 = 55u32;
|
1165
|
-
pub const DIRID_PROGRAM_FILES: u32 = 16422u32;
|
1166
|
-
pub const DIRID_PROGRAM_FILES_COMMON: u32 = 16427u32;
|
1167
|
-
pub const DIRID_PROGRAM_FILES_COMMONX86: u32 = 16428u32;
|
1168
|
-
pub const DIRID_PROGRAM_FILES_X86: u32 = 16426u32;
|
1169
|
-
pub const DIRID_SHARED: u32 = 25u32;
|
1170
|
-
pub const DIRID_SPOOL: u32 = 51u32;
|
1171
|
-
pub const DIRID_SPOOLDRIVERS: u32 = 52u32;
|
1172
|
-
pub const DIRID_SRCPATH: u32 = 1u32;
|
1173
|
-
pub const DIRID_SYSTEM: u32 = 11u32;
|
1174
|
-
pub const DIRID_SYSTEM16: u32 = 50u32;
|
1175
|
-
pub const DIRID_SYSTEM_X86: u32 = 16425u32;
|
1176
|
-
pub const DIRID_USER: u32 = 32768u32;
|
1177
|
-
pub const DIRID_USERPROFILE: u32 = 53u32;
|
1178
|
-
pub const DIRID_VIEWERS: u32 = 21u32;
|
1179
|
-
pub const DIRID_WINDOWS: u32 = 10u32;
|
1180
|
-
pub const DIURFLAG_NO_REMOVE_INF: DIUNINSTALLDRIVER_FLAGS = 1u32;
|
1181
|
-
pub const DIURFLAG_RESERVED: DIUNINSTALLDRIVER_FLAGS = 2u32;
|
1182
|
-
pub const DIURFLAG_VALID: DIUNINSTALLDRIVER_FLAGS = 3u32;
|
1183
|
-
pub const DI_AUTOASSIGNRES: SETUP_DI_DEVICE_INSTALL_FLAGS = 64u32;
|
1184
|
-
pub const DI_CLASSINSTALLPARAMS: SETUP_DI_DEVICE_INSTALL_FLAGS = 1048576u32;
|
1185
|
-
pub const DI_COMPAT_FROM_CLASS: SETUP_DI_DEVICE_INSTALL_FLAGS = 524288u32;
|
1186
|
-
pub const DI_DIDCLASS: SETUP_DI_DEVICE_INSTALL_FLAGS = 32u32;
|
1187
|
-
pub const DI_DIDCOMPAT: SETUP_DI_DEVICE_INSTALL_FLAGS = 16u32;
|
1188
|
-
pub const DI_DISABLED: SETUP_DI_DEVICE_INSTALL_FLAGS = 2048u32;
|
1189
|
-
pub const DI_DONOTCALLCONFIGMG: SETUP_DI_DEVICE_INSTALL_FLAGS = 131072u32;
|
1190
|
-
pub const DI_DRIVERPAGE_ADDED: SETUP_DI_DEVICE_INSTALL_FLAGS = 67108864u32;
|
1191
|
-
pub const DI_ENUMSINGLEINF: SETUP_DI_DEVICE_INSTALL_FLAGS = 65536u32;
|
1192
|
-
pub const DI_FLAGSEX_ALLOWEXCLUDEDDRVS: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 2048u32;
|
1193
|
-
pub const DI_FLAGSEX_ALTPLATFORM_DRVSEARCH: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 268435456u32;
|
1194
|
-
pub const DI_FLAGSEX_ALWAYSWRITEIDS: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 512u32;
|
1195
|
-
pub const DI_FLAGSEX_APPENDDRIVERLIST: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 262144u32;
|
1196
|
-
pub const DI_FLAGSEX_BACKUPONREPLACE: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 1048576u32;
|
1197
|
-
pub const DI_FLAGSEX_CI_FAILED: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 4u32;
|
1198
|
-
pub const DI_FLAGSEX_DEVICECHANGE: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 256u32;
|
1199
|
-
pub const DI_FLAGSEX_DIDCOMPATINFO: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 32u32;
|
1200
|
-
pub const DI_FLAGSEX_DIDINFOLIST: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 16u32;
|
1201
|
-
pub const DI_FLAGSEX_DRIVERLIST_FROM_URL: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 2097152u32;
|
1202
|
-
pub const DI_FLAGSEX_EXCLUDE_OLD_INET_DRIVERS: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 8388608u32;
|
1203
|
-
pub const DI_FLAGSEX_FILTERCLASSES: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 64u32;
|
1204
|
-
pub const DI_FLAGSEX_FILTERSIMILARDRIVERS: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 33554432u32;
|
1205
|
-
pub const DI_FLAGSEX_FINISHINSTALL_ACTION: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 8u32;
|
1206
|
-
pub const DI_FLAGSEX_INET_DRIVER: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 131072u32;
|
1207
|
-
pub const DI_FLAGSEX_INSTALLEDDRIVER: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 67108864u32;
|
1208
|
-
pub const DI_FLAGSEX_IN_SYSTEM_SETUP: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 65536u32;
|
1209
|
-
pub const DI_FLAGSEX_NOUIONQUERYREMOVE: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 4096u32;
|
1210
|
-
pub const DI_FLAGSEX_NO_CLASSLIST_NODE_MERGE: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 134217728u32;
|
1211
|
-
pub const DI_FLAGSEX_NO_DRVREG_MODIFY: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 32768u32;
|
1212
|
-
pub const DI_FLAGSEX_POWERPAGE_ADDED: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 16777216u32;
|
1213
|
-
pub const DI_FLAGSEX_PREINSTALLBACKUP: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 524288u32;
|
1214
|
-
pub const DI_FLAGSEX_PROPCHANGE_PENDING: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 1024u32;
|
1215
|
-
pub const DI_FLAGSEX_RECURSIVESEARCH: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 1073741824u32;
|
1216
|
-
pub const DI_FLAGSEX_RESERVED1: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 4194304u32;
|
1217
|
-
pub const DI_FLAGSEX_RESERVED2: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 1u32;
|
1218
|
-
pub const DI_FLAGSEX_RESERVED3: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 2u32;
|
1219
|
-
pub const DI_FLAGSEX_RESERVED4: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 16384u32;
|
1220
|
-
pub const DI_FLAGSEX_RESTART_DEVICE_ONLY: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 536870912u32;
|
1221
|
-
pub const DI_FLAGSEX_SEARCH_PUBLISHED_INFS: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 2147483648u32;
|
1222
|
-
pub const DI_FLAGSEX_SETFAILEDINSTALL: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 128u32;
|
1223
|
-
pub const DI_FLAGSEX_USECLASSFORCOMPAT: SETUP_DI_DEVICE_INSTALL_FLAGS_EX = 8192u32;
|
1224
|
-
pub const DI_FORCECOPY: SETUP_DI_DEVICE_INSTALL_FLAGS = 33554432u32;
|
1225
|
-
pub const DI_GENERALPAGE_ADDED: SETUP_DI_DEVICE_INSTALL_FLAGS = 4096u32;
|
1226
|
-
pub const DI_INF_IS_SORTED: SETUP_DI_DEVICE_INSTALL_FLAGS = 32768u32;
|
1227
|
-
pub const DI_INSTALLDISABLED: SETUP_DI_DEVICE_INSTALL_FLAGS = 262144u32;
|
1228
|
-
pub const DI_MULTMFGS: SETUP_DI_DEVICE_INSTALL_FLAGS = 1024u32;
|
1229
|
-
pub const DI_NEEDREBOOT: SETUP_DI_DEVICE_INSTALL_FLAGS = 256u32;
|
1230
|
-
pub const DI_NEEDRESTART: SETUP_DI_DEVICE_INSTALL_FLAGS = 128u32;
|
1231
|
-
pub const DI_NOBROWSE: SETUP_DI_DEVICE_INSTALL_FLAGS = 512u32;
|
1232
|
-
pub const DI_NODI_DEFAULTACTION: SETUP_DI_DEVICE_INSTALL_FLAGS = 2097152u32;
|
1233
|
-
pub const DI_NOFILECOPY: SETUP_DI_DEVICE_INSTALL_FLAGS = 16777216u32;
|
1234
|
-
pub const DI_NOSELECTICONS: SETUP_DI_DEVICE_INSTALL_FLAGS = 1073741824u32;
|
1235
|
-
pub const DI_NOVCP: SETUP_DI_DEVICE_INSTALL_FLAGS = 8u32;
|
1236
|
-
pub const DI_NOWRITE_IDS: SETUP_DI_DEVICE_INSTALL_FLAGS = 2147483648u32;
|
1237
|
-
pub const DI_OVERRIDE_INFFLAGS: SETUP_DI_DEVICE_INSTALL_FLAGS = 268435456u32;
|
1238
|
-
pub const DI_PROPERTIES_CHANGE: SETUP_DI_DEVICE_INSTALL_FLAGS = 16384u32;
|
1239
|
-
pub const DI_PROPS_NOCHANGEUSAGE: SETUP_DI_DEVICE_INSTALL_FLAGS = 536870912u32;
|
1240
|
-
pub const DI_QUIETINSTALL: SETUP_DI_DEVICE_INSTALL_FLAGS = 8388608u32;
|
1241
|
-
pub const DI_REMOVEDEVICE_CONFIGSPECIFIC: SETUP_DI_REMOVE_DEVICE_SCOPE = 2u32;
|
1242
|
-
pub const DI_REMOVEDEVICE_GLOBAL: SETUP_DI_REMOVE_DEVICE_SCOPE = 1u32;
|
1243
|
-
pub const DI_RESOURCEPAGE_ADDED: SETUP_DI_DEVICE_INSTALL_FLAGS = 8192u32;
|
1244
|
-
pub const DI_SHOWALL: SETUP_DI_DEVICE_INSTALL_FLAGS = 7u32;
|
1245
|
-
pub const DI_SHOWCLASS: SETUP_DI_DEVICE_INSTALL_FLAGS = 4u32;
|
1246
|
-
pub const DI_SHOWCOMPAT: SETUP_DI_DEVICE_INSTALL_FLAGS = 2u32;
|
1247
|
-
pub const DI_SHOWOEM: SETUP_DI_DEVICE_INSTALL_FLAGS = 1u32;
|
1248
|
-
pub const DI_UNREMOVEDEVICE_CONFIGSPECIFIC: SETUP_DI_DEVICE_INSTALL_FLAGS = 2u32;
|
1249
|
-
pub const DI_USECI_SELECTSTRINGS: SETUP_DI_DEVICE_INSTALL_FLAGS = 134217728u32;
|
1250
|
-
pub const DMI_BKCOLOR: u32 = 2u32;
|
1251
|
-
pub const DMI_MASK: u32 = 1u32;
|
1252
|
-
pub const DMI_USERECT: u32 = 4u32;
|
1253
|
-
pub const DNF_ALWAYSEXCLUDEFROMLIST: SETUP_DI_DRIVER_INSTALL_FLAGS = 524288u32;
|
1254
|
-
pub const DNF_AUTHENTICODE_SIGNED: SETUP_DI_DRIVER_INSTALL_FLAGS = 131072u32;
|
1255
|
-
pub const DNF_BAD_DRIVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 2048u32;
|
1256
|
-
pub const DNF_BASIC_DRIVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 65536u32;
|
1257
|
-
pub const DNF_CLASS_DRIVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 32u32;
|
1258
|
-
pub const DNF_COMPATIBLE_DRIVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 64u32;
|
1259
|
-
pub const DNF_DUPDESC: SETUP_DI_DRIVER_INSTALL_FLAGS = 1u32;
|
1260
|
-
pub const DNF_DUPDRIVERVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 32768u32;
|
1261
|
-
pub const DNF_DUPPROVIDER: SETUP_DI_DRIVER_INSTALL_FLAGS = 4096u32;
|
1262
|
-
pub const DNF_EXCLUDEFROMLIST: SETUP_DI_DRIVER_INSTALL_FLAGS = 4u32;
|
1263
|
-
pub const DNF_INBOX_DRIVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 1048576u32;
|
1264
|
-
pub const DNF_INET_DRIVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 128u32;
|
1265
|
-
pub const DNF_INF_IS_SIGNED: SETUP_DI_DRIVER_INSTALL_FLAGS = 8192u32;
|
1266
|
-
pub const DNF_INSTALLEDDRIVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 262144u32;
|
1267
|
-
pub const DNF_LEGACYINF: SETUP_DI_DRIVER_INSTALL_FLAGS = 16u32;
|
1268
|
-
pub const DNF_NODRIVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 8u32;
|
1269
|
-
pub const DNF_OEM_F6_INF: SETUP_DI_DRIVER_INSTALL_FLAGS = 16384u32;
|
1270
|
-
pub const DNF_OLDDRIVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 2u32;
|
1271
|
-
pub const DNF_OLD_INET_DRIVER: SETUP_DI_DRIVER_INSTALL_FLAGS = 1024u32;
|
1272
|
-
pub const DNF_REQUESTADDITIONALSOFTWARE: SETUP_DI_DRIVER_INSTALL_FLAGS = 2097152u32;
|
1273
|
-
pub const DNF_UNUSED1: SETUP_DI_DRIVER_INSTALL_FLAGS = 256u32;
|
1274
|
-
pub const DNF_UNUSED2: SETUP_DI_DRIVER_INSTALL_FLAGS = 512u32;
|
1275
|
-
pub const DNF_UNUSED_22: SETUP_DI_DRIVER_INSTALL_FLAGS = 4194304u32;
|
1276
|
-
pub const DNF_UNUSED_23: SETUP_DI_DRIVER_INSTALL_FLAGS = 8388608u32;
|
1277
|
-
pub const DNF_UNUSED_24: SETUP_DI_DRIVER_INSTALL_FLAGS = 16777216u32;
|
1278
|
-
pub const DNF_UNUSED_25: SETUP_DI_DRIVER_INSTALL_FLAGS = 33554432u32;
|
1279
|
-
pub const DNF_UNUSED_26: SETUP_DI_DRIVER_INSTALL_FLAGS = 67108864u32;
|
1280
|
-
pub const DNF_UNUSED_27: SETUP_DI_DRIVER_INSTALL_FLAGS = 134217728u32;
|
1281
|
-
pub const DNF_UNUSED_28: SETUP_DI_DRIVER_INSTALL_FLAGS = 268435456u32;
|
1282
|
-
pub const DNF_UNUSED_29: SETUP_DI_DRIVER_INSTALL_FLAGS = 536870912u32;
|
1283
|
-
pub const DNF_UNUSED_30: SETUP_DI_DRIVER_INSTALL_FLAGS = 1073741824u32;
|
1284
|
-
pub const DNF_UNUSED_31: SETUP_DI_DRIVER_INSTALL_FLAGS = 2147483648u32;
|
1285
|
-
pub const DN_APM_DRIVER: CM_DEVNODE_STATUS_FLAGS = 268435456u32;
|
1286
|
-
pub const DN_APM_ENUMERATOR: CM_DEVNODE_STATUS_FLAGS = 134217728u32;
|
1287
|
-
pub const DN_ARM_WAKEUP: CM_DEVNODE_STATUS_FLAGS = 67108864u32;
|
1288
|
-
pub const DN_BAD_PARTIAL: CM_DEVNODE_STATUS_FLAGS = 4194304u32;
|
1289
|
-
pub const DN_BOOT_LOG_PROB: CM_DEVNODE_STATUS_FLAGS = 2147483648u32;
|
1290
|
-
pub const DN_CHANGEABLE_FLAGS: CM_DEVNODE_STATUS_FLAGS = 1639670464u32;
|
1291
|
-
pub const DN_CHILD_WITH_INVALID_ID: CM_DEVNODE_STATUS_FLAGS = 512u32;
|
1292
|
-
pub const DN_DEVICE_DISCONNECTED: CM_DEVNODE_STATUS_FLAGS = 33554432u32;
|
1293
|
-
pub const DN_DISABLEABLE: CM_DEVNODE_STATUS_FLAGS = 8192u32;
|
1294
|
-
pub const DN_DRIVER_BLOCKED: CM_DEVNODE_STATUS_FLAGS = 64u32;
|
1295
|
-
pub const DN_DRIVER_LOADED: CM_DEVNODE_STATUS_FLAGS = 2u32;
|
1296
|
-
pub const DN_ENUM_LOADED: CM_DEVNODE_STATUS_FLAGS = 4u32;
|
1297
|
-
pub const DN_FILTERED: CM_DEVNODE_STATUS_FLAGS = 2048u32;
|
1298
|
-
pub const DN_HARDWARE_ENUM: CM_DEVNODE_STATUS_FLAGS = 128u32;
|
1299
|
-
pub const DN_HAS_MARK: CM_DEVNODE_STATUS_FLAGS = 512u32;
|
1300
|
-
pub const DN_HAS_PROBLEM: CM_DEVNODE_STATUS_FLAGS = 1024u32;
|
1301
|
-
pub const DN_LEGACY_DRIVER: CM_DEVNODE_STATUS_FLAGS = 4096u32;
|
1302
|
-
pub const DN_LIAR: CM_DEVNODE_STATUS_FLAGS = 256u32;
|
1303
|
-
pub const DN_MANUAL: CM_DEVNODE_STATUS_FLAGS = 16u32;
|
1304
|
-
pub const DN_MF_CHILD: CM_DEVNODE_STATUS_FLAGS = 131072u32;
|
1305
|
-
pub const DN_MF_PARENT: CM_DEVNODE_STATUS_FLAGS = 65536u32;
|
1306
|
-
pub const DN_MOVED: CM_DEVNODE_STATUS_FLAGS = 4096u32;
|
1307
|
-
pub const DN_NEEDS_LOCKING: CM_DEVNODE_STATUS_FLAGS = 33554432u32;
|
1308
|
-
pub const DN_NEED_RESTART: CM_DEVNODE_STATUS_FLAGS = 256u32;
|
1309
|
-
pub const DN_NEED_TO_ENUM: CM_DEVNODE_STATUS_FLAGS = 32u32;
|
1310
|
-
pub const DN_NOT_FIRST_TIME: CM_DEVNODE_STATUS_FLAGS = 64u32;
|
1311
|
-
pub const DN_NOT_FIRST_TIMEE: CM_DEVNODE_STATUS_FLAGS = 524288u32;
|
1312
|
-
pub const DN_NO_SHOW_IN_DM: CM_DEVNODE_STATUS_FLAGS = 1073741824u32;
|
1313
|
-
pub const DN_NT_DRIVER: CM_DEVNODE_STATUS_FLAGS = 16777216u32;
|
1314
|
-
pub const DN_NT_ENUMERATOR: CM_DEVNODE_STATUS_FLAGS = 8388608u32;
|
1315
|
-
pub const DN_PRIVATE_PROBLEM: CM_DEVNODE_STATUS_FLAGS = 32768u32;
|
1316
|
-
pub const DN_QUERY_REMOVE_ACTIVE: CM_DEVNODE_STATUS_FLAGS = 131072u32;
|
1317
|
-
pub const DN_QUERY_REMOVE_PENDING: CM_DEVNODE_STATUS_FLAGS = 65536u32;
|
1318
|
-
pub const DN_REBAL_CANDIDATE: CM_DEVNODE_STATUS_FLAGS = 2097152u32;
|
1319
|
-
pub const DN_REMOVABLE: CM_DEVNODE_STATUS_FLAGS = 16384u32;
|
1320
|
-
pub const DN_ROOT_ENUMERATED: CM_DEVNODE_STATUS_FLAGS = 1u32;
|
1321
|
-
pub const DN_SILENT_INSTALL: CM_DEVNODE_STATUS_FLAGS = 536870912u32;
|
1322
|
-
pub const DN_STARTED: CM_DEVNODE_STATUS_FLAGS = 8u32;
|
1323
|
-
pub const DN_STOP_FREE_RES: CM_DEVNODE_STATUS_FLAGS = 1048576u32;
|
1324
|
-
pub const DN_WILL_BE_REMOVED: CM_DEVNODE_STATUS_FLAGS = 262144u32;
|
1325
|
-
pub const DPROMPT_BUFFERTOOSMALL: u32 = 3u32;
|
1326
|
-
pub const DPROMPT_CANCEL: u32 = 1u32;
|
1327
|
-
pub const DPROMPT_OUTOFMEMORY: u32 = 4u32;
|
1328
|
-
pub const DPROMPT_SKIPFILE: u32 = 2u32;
|
1329
|
-
pub const DPROMPT_SUCCESS: u32 = 0u32;
|
1330
|
-
pub const DRIVER_COMPATID_RANK: u32 = 16383u32;
|
1331
|
-
pub const DRIVER_HARDWAREID_MASK: u32 = 2147487743u32;
|
1332
|
-
pub const DRIVER_HARDWAREID_RANK: u32 = 4095u32;
|
1333
|
-
pub const DRIVER_UNTRUSTED_COMPATID_RANK: u32 = 49151u32;
|
1334
|
-
pub const DRIVER_UNTRUSTED_HARDWAREID_RANK: u32 = 36863u32;
|
1335
|
-
pub const DRIVER_UNTRUSTED_RANK: u32 = 2147483648u32;
|
1336
|
-
pub const DRIVER_W9X_SUSPECT_COMPATID_RANK: u32 = 65535u32;
|
1337
|
-
pub const DRIVER_W9X_SUSPECT_HARDWAREID_RANK: u32 = 53247u32;
|
1338
|
-
pub const DRIVER_W9X_SUSPECT_RANK: u32 = 3221225472u32;
|
1339
|
-
pub const DWORD_MAX: u32 = 4294967295u32;
|
1340
|
-
pub const DYNAWIZ_FLAG_ANALYZE_HANDLECONFLICT: u32 = 8u32;
|
1341
|
-
pub const DYNAWIZ_FLAG_INSTALLDET_NEXT: u32 = 2u32;
|
1342
|
-
pub const DYNAWIZ_FLAG_INSTALLDET_PREV: u32 = 4u32;
|
1343
|
-
pub const DYNAWIZ_FLAG_PAGESADDED: u32 = 1u32;
|
1344
|
-
pub const ENABLECLASS_FAILURE: u32 = 2u32;
|
1345
|
-
pub const ENABLECLASS_QUERY: u32 = 0u32;
|
1346
|
-
pub const ENABLECLASS_SUCCESS: u32 = 1u32;
|
1347
|
-
pub const FILEOP_ABORT: u32 = 0u32;
|
1348
|
-
pub const FILEOP_BACKUP: u32 = 3u32;
|
1349
|
-
pub const FILEOP_COPY: SETUP_FILE_OPERATION = 0u32;
|
1350
|
-
pub const FILEOP_DELETE: SETUP_FILE_OPERATION = 2u32;
|
1351
|
-
pub const FILEOP_DOIT: u32 = 1u32;
|
1352
|
-
pub const FILEOP_NEWPATH: u32 = 4u32;
|
1353
|
-
pub const FILEOP_RENAME: u32 = 1u32;
|
1354
|
-
pub const FILEOP_RETRY: u32 = 1u32;
|
1355
|
-
pub const FILEOP_SKIP: u32 = 2u32;
|
1356
|
-
pub const FILE_COMPRESSION_MSZIP: FILE_COMPRESSION_TYPE = 2u32;
|
1357
|
-
pub const FILE_COMPRESSION_NONE: FILE_COMPRESSION_TYPE = 0u32;
|
1358
|
-
pub const FILE_COMPRESSION_NTCAB: FILE_COMPRESSION_TYPE = 3u32;
|
1359
|
-
pub const FILE_COMPRESSION_WINLZA: FILE_COMPRESSION_TYPE = 1u32;
|
1360
|
-
pub const FILTERED_LOG_CONF: CM_LOG_CONF = 1u32;
|
1361
|
-
pub const FLG_ADDPROPERTY_AND: u32 = 16u32;
|
1362
|
-
pub const FLG_ADDPROPERTY_APPEND: u32 = 4u32;
|
1363
|
-
pub const FLG_ADDPROPERTY_NOCLOBBER: u32 = 1u32;
|
1364
|
-
pub const FLG_ADDPROPERTY_OR: u32 = 8u32;
|
1365
|
-
pub const FLG_ADDPROPERTY_OVERWRITEONLY: u32 = 2u32;
|
1366
|
-
pub const FLG_ADDREG_32BITKEY: u32 = 16384u32;
|
1367
|
-
pub const FLG_ADDREG_64BITKEY: u32 = 4096u32;
|
1368
|
-
pub const FLG_ADDREG_APPEND: u32 = 8u32;
|
1369
|
-
pub const FLG_ADDREG_BINVALUETYPE: u32 = 1u32;
|
1370
|
-
pub const FLG_ADDREG_DELREG_BIT: u32 = 32768u32;
|
1371
|
-
pub const FLG_ADDREG_DELVAL: u32 = 4u32;
|
1372
|
-
pub const FLG_ADDREG_KEYONLY: u32 = 16u32;
|
1373
|
-
pub const FLG_ADDREG_KEYONLY_COMMON: u32 = 8192u32;
|
1374
|
-
pub const FLG_ADDREG_NOCLOBBER: u32 = 2u32;
|
1375
|
-
pub const FLG_ADDREG_OVERWRITEONLY: u32 = 32u32;
|
1376
|
-
pub const FLG_ADDREG_TYPE_EXPAND_SZ: u32 = 131072u32;
|
1377
|
-
pub const FLG_ADDREG_TYPE_MULTI_SZ: u32 = 65536u32;
|
1378
|
-
pub const FLG_ADDREG_TYPE_SZ: u32 = 0u32;
|
1379
|
-
pub const FLG_BITREG_32BITKEY: u32 = 16384u32;
|
1380
|
-
pub const FLG_BITREG_64BITKEY: u32 = 4096u32;
|
1381
|
-
pub const FLG_BITREG_CLEARBITS: u32 = 0u32;
|
1382
|
-
pub const FLG_BITREG_SETBITS: u32 = 1u32;
|
1383
|
-
pub const FLG_DELPROPERTY_MULTI_SZ_DELSTRING: u32 = 1u32;
|
1384
|
-
pub const FLG_DELREG_32BITKEY: u32 = 16384u32;
|
1385
|
-
pub const FLG_DELREG_64BITKEY: u32 = 4096u32;
|
1386
|
-
pub const FLG_DELREG_KEYONLY_COMMON: u32 = 8192u32;
|
1387
|
-
pub const FLG_DELREG_OPERATION_MASK: u32 = 254u32;
|
1388
|
-
pub const FLG_DELREG_TYPE_EXPAND_SZ: u32 = 131072u32;
|
1389
|
-
pub const FLG_DELREG_TYPE_MULTI_SZ: u32 = 65536u32;
|
1390
|
-
pub const FLG_DELREG_TYPE_SZ: u32 = 0u32;
|
1391
|
-
pub const FLG_DELREG_VALUE: u32 = 0u32;
|
1392
|
-
pub const FLG_INI2REG_32BITKEY: u32 = 16384u32;
|
1393
|
-
pub const FLG_INI2REG_64BITKEY: u32 = 4096u32;
|
1394
|
-
pub const FLG_PROFITEM_CSIDL: u32 = 8u32;
|
1395
|
-
pub const FLG_PROFITEM_CURRENTUSER: u32 = 1u32;
|
1396
|
-
pub const FLG_PROFITEM_DELETE: u32 = 2u32;
|
1397
|
-
pub const FLG_PROFITEM_GROUP: u32 = 4u32;
|
1398
|
-
pub const FLG_REGSVR_DLLINSTALL: u32 = 2u32;
|
1399
|
-
pub const FLG_REGSVR_DLLREGISTER: u32 = 1u32;
|
1400
|
-
pub const FORCED_LOG_CONF: CM_LOG_CONF = 4u32;
|
1401
|
-
pub const GUID_ACPI_CMOS_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x3a8d0384_6505_40ca_bc39_56c15f8c5fed);
|
1402
|
-
pub const GUID_ACPI_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb091a08a_ba97_11d0_bd14_00aa00b7b32a);
|
1403
|
-
pub const GUID_ACPI_INTERFACE_STANDARD2: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe8695f63_1831_4870_a8cf_9c2f03f9dcb5);
|
1404
|
-
pub const GUID_ACPI_PORT_RANGES_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf14f609b_cbbd_4957_a674_bc00213f1c97);
|
1405
|
-
pub const GUID_ACPI_REGS_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x06141966_7245_6369_462e_4e656c736f6e);
|
1406
|
-
pub const GUID_AGP_TARGET_BUS_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb15cfce8_06d1_4d37_9d4c_bedde0c2a6ff);
|
1407
|
-
pub const GUID_ARBITER_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe644f185_8c0e_11d0_becf_08002be2092f);
|
1408
|
-
pub const GUID_BUS_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x496b8280_6f25_11d0_beaf_08002be2092f);
|
1409
|
-
pub const GUID_BUS_RESOURCE_UPDATE_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x27d0102d_bfb2_4164_81dd_dbb82f968b48);
|
1410
|
-
pub const GUID_BUS_TYPE_1394: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf74e73eb_9ac5_45eb_be4d_772cc71ddfb3);
|
1411
|
-
pub const GUID_BUS_TYPE_ACPI: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd7b46895_001a_4942_891f_a7d46610a843);
|
1412
|
-
pub const GUID_BUS_TYPE_AVC: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc06ff265_ae09_48f0_812c_16753d7cba83);
|
1413
|
-
pub const GUID_BUS_TYPE_DOT4PRT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x441ee001_4342_11d5_a184_00c04f60524d);
|
1414
|
-
pub const GUID_BUS_TYPE_EISA: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xddc35509_f3fc_11d0_a537_0000f8753ed1);
|
1415
|
-
pub const GUID_BUS_TYPE_HID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xeeaf37d0_1963_47c4_aa48_72476db7cf49);
|
1416
|
-
pub const GUID_BUS_TYPE_INTERNAL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1530ea73_086b_11d1_a09f_00c04fc340b1);
|
1417
|
-
pub const GUID_BUS_TYPE_IRDA: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7ae17dc1_c944_44d6_881f_4c2e61053bc1);
|
1418
|
-
pub const GUID_BUS_TYPE_ISAPNP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe676f854_d87d_11d0_92b2_00a0c9055fc5);
|
1419
|
-
pub const GUID_BUS_TYPE_LPTENUM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc4ca1000_2ddc_11d5_a17a_00c04f60524d);
|
1420
|
-
pub const GUID_BUS_TYPE_MCA: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1c75997a_dc33_11d0_92b2_00a0c9055fc5);
|
1421
|
-
pub const GUID_BUS_TYPE_PCI: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc8ebdfb0_b510_11d0_80e5_00a0c92542e3);
|
1422
|
-
pub const GUID_BUS_TYPE_PCMCIA: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x09343630_af9f_11d0_92e9_0000f81e1b30);
|
1423
|
-
pub const GUID_BUS_TYPE_SCM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x375a5912_804c_45aa_bdc2_fdd25a1d9512);
|
1424
|
-
pub const GUID_BUS_TYPE_SD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe700cc04_4036_4e89_9579_89ebf45f00cd);
|
1425
|
-
pub const GUID_BUS_TYPE_SERENUM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x77114a87_8944_11d1_bd90_00a0c906be2d);
|
1426
|
-
pub const GUID_BUS_TYPE_SW_DEVICE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x06d10322_7de0_4cef_8e25_197d0e7442e2);
|
1427
|
-
pub const GUID_BUS_TYPE_USB: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9d7debbc_c85d_11d1_9eb4_006008c3a19a);
|
1428
|
-
pub const GUID_BUS_TYPE_USBPRINT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x441ee000_4342_11d5_a184_00c04f60524d);
|
1429
|
-
pub const GUID_D3COLD_AUX_POWER_AND_TIMING_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x0044d8aa_f664_4588_9ffc_2afeaf5950b9);
|
1430
|
-
pub const GUID_D3COLD_SUPPORT_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb38290e5_3cd0_4f9d_9937_f5fe2b44d47a);
|
1431
|
-
pub const GUID_DEVCLASS_1394: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6bdd1fc1_810f_11d0_bec7_08002be2092f);
|
1432
|
-
pub const GUID_DEVCLASS_1394DEBUG: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x66f250d6_7801_4a64_b139_eea80a450b24);
|
1433
|
-
pub const GUID_DEVCLASS_61883: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7ebefbc0_3200_11d2_b4c2_00a0c9697d07);
|
1434
|
-
pub const GUID_DEVCLASS_ADAPTER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e964_e325_11ce_bfc1_08002be10318);
|
1435
|
-
pub const GUID_DEVCLASS_APMSUPPORT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd45b1c18_c8fa_11d1_9f77_0000f805f530);
|
1436
|
-
pub const GUID_DEVCLASS_AVC: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc06ff265_ae09_48f0_812c_16753d7cba83);
|
1437
|
-
pub const GUID_DEVCLASS_BATTERY: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x72631e54_78a4_11d0_bcf7_00aa00b7b32a);
|
1438
|
-
pub const GUID_DEVCLASS_BIOMETRIC: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x53d29ef7_377c_4d14_864b_eb3a85769359);
|
1439
|
-
pub const GUID_DEVCLASS_BLUETOOTH: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe0cbf06c_cd8b_4647_bb8a_263b43f0f974);
|
1440
|
-
pub const GUID_DEVCLASS_CAMERA: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xca3e7ab9_b4c3_4ae6_8251_579ef933890f);
|
1441
|
-
pub const GUID_DEVCLASS_CDROM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e965_e325_11ce_bfc1_08002be10318);
|
1442
|
-
pub const GUID_DEVCLASS_COMPUTEACCELERATOR: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf01a9d53_3ff6_48d2_9f97_c8a7004be10c);
|
1443
|
-
pub const GUID_DEVCLASS_COMPUTER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e966_e325_11ce_bfc1_08002be10318);
|
1444
|
-
pub const GUID_DEVCLASS_DECODER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6bdd1fc2_810f_11d0_bec7_08002be2092f);
|
1445
|
-
pub const GUID_DEVCLASS_DISKDRIVE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e967_e325_11ce_bfc1_08002be10318);
|
1446
|
-
pub const GUID_DEVCLASS_DISPLAY: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e968_e325_11ce_bfc1_08002be10318);
|
1447
|
-
pub const GUID_DEVCLASS_DOT4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x48721b56_6795_11d2_b1a8_0080c72e74a2);
|
1448
|
-
pub const GUID_DEVCLASS_DOT4PRINT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x49ce6ac8_6f86_11d2_b1e5_0080c72e74a2);
|
1449
|
-
pub const GUID_DEVCLASS_EHSTORAGESILO: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9da2b80f_f89f_4a49_a5c2_511b085b9e8a);
|
1450
|
-
pub const GUID_DEVCLASS_ENUM1394: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc459df55_db08_11d1_b009_00a0c9081ff6);
|
1451
|
-
pub const GUID_DEVCLASS_EXTENSION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe2f84ce7_8efa_411c_aa69_97454ca4cb57);
|
1452
|
-
pub const GUID_DEVCLASS_FDC: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e969_e325_11ce_bfc1_08002be10318);
|
1453
|
-
pub const GUID_DEVCLASS_FIRMWARE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf2e7dd72_6468_4e36_b6f1_6488f42c1b52);
|
1454
|
-
pub const GUID_DEVCLASS_FLOPPYDISK: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e980_e325_11ce_bfc1_08002be10318);
|
1455
|
-
pub const GUID_DEVCLASS_FSFILTER_ACTIVITYMONITOR: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb86dff51_a31e_4bac_b3cf_e8cfe75c9fc2);
|
1456
|
-
pub const GUID_DEVCLASS_FSFILTER_ANTIVIRUS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb1d1a169_c54f_4379_81db_bee7d88d7454);
|
1457
|
-
pub const GUID_DEVCLASS_FSFILTER_BOTTOM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x37765ea0_5958_4fc9_b04b_2fdfef97e59e);
|
1458
|
-
pub const GUID_DEVCLASS_FSFILTER_CFSMETADATASERVER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcdcf0939_b75b_4630_bf76_80f7ba655884);
|
1459
|
-
pub const GUID_DEVCLASS_FSFILTER_COMPRESSION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf3586baf_b5aa_49b5_8d6c_0569284c639f);
|
1460
|
-
pub const GUID_DEVCLASS_FSFILTER_CONTENTSCREENER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x3e3f0674_c83c_4558_bb26_9820e1eba5c5);
|
1461
|
-
pub const GUID_DEVCLASS_FSFILTER_CONTINUOUSBACKUP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x71aa14f8_6fad_4622_ad77_92bb9d7e6947);
|
1462
|
-
pub const GUID_DEVCLASS_FSFILTER_COPYPROTECTION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x89786ff1_9c12_402f_9c9e_17753c7f4375);
|
1463
|
-
pub const GUID_DEVCLASS_FSFILTER_ENCRYPTION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa0a701c0_a511_42ff_aa6c_06dc0395576f);
|
1464
|
-
pub const GUID_DEVCLASS_FSFILTER_HSM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd546500a_2aeb_45f6_9482_f4b1799c3177);
|
1465
|
-
pub const GUID_DEVCLASS_FSFILTER_INFRASTRUCTURE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe55fa6f9_128c_4d04_abab_630c74b1453a);
|
1466
|
-
pub const GUID_DEVCLASS_FSFILTER_OPENFILEBACKUP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf8ecafa6_66d1_41a5_899b_66585d7216b7);
|
1467
|
-
pub const GUID_DEVCLASS_FSFILTER_PHYSICALQUOTAMANAGEMENT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6a0a8e78_bba6_4fc4_a709_1e33cd09d67e);
|
1468
|
-
pub const GUID_DEVCLASS_FSFILTER_QUOTAMANAGEMENT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x8503c911_a6c7_4919_8f79_5028f5866b0c);
|
1469
|
-
pub const GUID_DEVCLASS_FSFILTER_REPLICATION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x48d3ebc4_4cf8_48ff_b869_9c68ad42eb9f);
|
1470
|
-
pub const GUID_DEVCLASS_FSFILTER_SECURITYENHANCER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd02bc3da_0c8e_4945_9bd5_f1883c226c8c);
|
1471
|
-
pub const GUID_DEVCLASS_FSFILTER_SYSTEM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5d1b9aaa_01e2_46af_849f_272b3f324c46);
|
1472
|
-
pub const GUID_DEVCLASS_FSFILTER_SYSTEMRECOVERY: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2db15374_706e_4131_a0c7_d7c78eb0289a);
|
1473
|
-
pub const GUID_DEVCLASS_FSFILTER_TOP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb369baf4_5568_4e82_a87e_a93eb16bca87);
|
1474
|
-
pub const GUID_DEVCLASS_FSFILTER_UNDELETE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xfe8f1572_c67a_48c0_bbac_0b5c6d66cafb);
|
1475
|
-
pub const GUID_DEVCLASS_FSFILTER_VIRTUALIZATION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf75a86c0_10d8_4c3a_b233_ed60e4cdfaac);
|
1476
|
-
pub const GUID_DEVCLASS_GENERIC: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xff494df1_c4ed_4fac_9b3f_3786f6e91e7e);
|
1477
|
-
pub const GUID_DEVCLASS_GPS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6bdd1fc3_810f_11d0_bec7_08002be2092f);
|
1478
|
-
pub const GUID_DEVCLASS_HDC: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e96a_e325_11ce_bfc1_08002be10318);
|
1479
|
-
pub const GUID_DEVCLASS_HIDCLASS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x745a17a0_74d3_11d0_b6fe_00a0c90f57da);
|
1480
|
-
pub const GUID_DEVCLASS_HOLOGRAPHIC: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd612553d_06b1_49ca_8938_e39ef80eb16f);
|
1481
|
-
pub const GUID_DEVCLASS_IMAGE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6bdd1fc6_810f_11d0_bec7_08002be2092f);
|
1482
|
-
pub const GUID_DEVCLASS_INFINIBAND: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x30ef7132_d858_4a0c_ac24_b9028a5cca3f);
|
1483
|
-
pub const GUID_DEVCLASS_INFRARED: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6bdd1fc5_810f_11d0_bec7_08002be2092f);
|
1484
|
-
pub const GUID_DEVCLASS_KEYBOARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e96b_e325_11ce_bfc1_08002be10318);
|
1485
|
-
pub const GUID_DEVCLASS_LEGACYDRIVER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x8ecc055d_047f_11d1_a537_0000f8753ed1);
|
1486
|
-
pub const GUID_DEVCLASS_MEDIA: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e96c_e325_11ce_bfc1_08002be10318);
|
1487
|
-
pub const GUID_DEVCLASS_MEDIUM_CHANGER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xce5939ae_ebde_11d0_b181_0000f8753ec4);
|
1488
|
-
pub const GUID_DEVCLASS_MEMORY: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5099944a_f6b9_4057_a056_8c550228544c);
|
1489
|
-
pub const GUID_DEVCLASS_MODEM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e96d_e325_11ce_bfc1_08002be10318);
|
1490
|
-
pub const GUID_DEVCLASS_MONITOR: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e96e_e325_11ce_bfc1_08002be10318);
|
1491
|
-
pub const GUID_DEVCLASS_MOUSE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e96f_e325_11ce_bfc1_08002be10318);
|
1492
|
-
pub const GUID_DEVCLASS_MTD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e970_e325_11ce_bfc1_08002be10318);
|
1493
|
-
pub const GUID_DEVCLASS_MULTIFUNCTION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e971_e325_11ce_bfc1_08002be10318);
|
1494
|
-
pub const GUID_DEVCLASS_MULTIPORTSERIAL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x50906cb8_ba12_11d1_bf5d_0000f805f530);
|
1495
|
-
pub const GUID_DEVCLASS_NET: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e972_e325_11ce_bfc1_08002be10318);
|
1496
|
-
pub const GUID_DEVCLASS_NETCLIENT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e973_e325_11ce_bfc1_08002be10318);
|
1497
|
-
pub const GUID_DEVCLASS_NETDRIVER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x87ef9ad1_8f70_49ee_b215_ab1fcadcbe3c);
|
1498
|
-
pub const GUID_DEVCLASS_NETSERVICE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e974_e325_11ce_bfc1_08002be10318);
|
1499
|
-
pub const GUID_DEVCLASS_NETTRANS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e975_e325_11ce_bfc1_08002be10318);
|
1500
|
-
pub const GUID_DEVCLASS_NETUIO: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x78912bc1_cb8e_4b28_a329_f322ebadbe0f);
|
1501
|
-
pub const GUID_DEVCLASS_NODRIVER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e976_e325_11ce_bfc1_08002be10318);
|
1502
|
-
pub const GUID_DEVCLASS_PCMCIA: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e977_e325_11ce_bfc1_08002be10318);
|
1503
|
-
pub const GUID_DEVCLASS_PNPPRINTERS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4658ee7e_f050_11d1_b6bd_00c04fa372a7);
|
1504
|
-
pub const GUID_DEVCLASS_PORTS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e978_e325_11ce_bfc1_08002be10318);
|
1505
|
-
pub const GUID_DEVCLASS_PRIMITIVE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x242681d1_eed3_41d2_a1ef_1468fc843106);
|
1506
|
-
pub const GUID_DEVCLASS_PRINTER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e979_e325_11ce_bfc1_08002be10318);
|
1507
|
-
pub const GUID_DEVCLASS_PRINTERUPGRADE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e97a_e325_11ce_bfc1_08002be10318);
|
1508
|
-
pub const GUID_DEVCLASS_PRINTQUEUE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1ed2bbf9_11f0_4084_b21f_ad83a8e6dcdc);
|
1509
|
-
pub const GUID_DEVCLASS_PROCESSOR: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x50127dc3_0f36_415e_a6cc_4cb3be910b65);
|
1510
|
-
pub const GUID_DEVCLASS_SBP2: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd48179be_ec20_11d1_b6b8_00c04fa372a7);
|
1511
|
-
pub const GUID_DEVCLASS_SCMDISK: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x53966cb1_4d46_4166_bf23_c522403cd495);
|
1512
|
-
pub const GUID_DEVCLASS_SCMVOLUME: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x53ccb149_e543_4c84_b6e0_bce4f6b7e806);
|
1513
|
-
pub const GUID_DEVCLASS_SCSIADAPTER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e97b_e325_11ce_bfc1_08002be10318);
|
1514
|
-
pub const GUID_DEVCLASS_SECURITYACCELERATOR: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x268c95a1_edfe_11d3_95c3_0010dc4050a5);
|
1515
|
-
pub const GUID_DEVCLASS_SENSOR: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5175d334_c371_4806_b3ba_71fd53c9258d);
|
1516
|
-
pub const GUID_DEVCLASS_SIDESHOW: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x997b5d8d_c442_4f2e_baf3_9c8e671e9e21);
|
1517
|
-
pub const GUID_DEVCLASS_SMARTCARDREADER: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x50dd5230_ba8a_11d1_bf5d_0000f805f530);
|
1518
|
-
pub const GUID_DEVCLASS_SMRDISK: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x53487c23_680f_4585_acc3_1f10d6777e82);
|
1519
|
-
pub const GUID_DEVCLASS_SMRVOLUME: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x53b3cf03_8f5a_4788_91b6_d19ed9fcccbf);
|
1520
|
-
pub const GUID_DEVCLASS_SOFTWARECOMPONENT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5c4c3332_344d_483c_8739_259e934c9cc8);
|
1521
|
-
pub const GUID_DEVCLASS_SOUND: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e97c_e325_11ce_bfc1_08002be10318);
|
1522
|
-
pub const GUID_DEVCLASS_SYSTEM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e97d_e325_11ce_bfc1_08002be10318);
|
1523
|
-
pub const GUID_DEVCLASS_TAPEDRIVE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6d807884_7d21_11cf_801c_08002be10318);
|
1524
|
-
pub const GUID_DEVCLASS_UCM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe6f1aa1c_7f3b_4473_b2e8_c97d8ac71d53);
|
1525
|
-
pub const GUID_DEVCLASS_UNKNOWN: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d36e97e_e325_11ce_bfc1_08002be10318);
|
1526
|
-
pub const GUID_DEVCLASS_USB: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x36fc9e60_c465_11cf_8056_444553540000);
|
1527
|
-
pub const GUID_DEVCLASS_VOLUME: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x71a27cdd_812a_11d0_bec7_08002be2092f);
|
1528
|
-
pub const GUID_DEVCLASS_VOLUMESNAPSHOT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x533c5b84_ec70_11d2_9505_00c04f79deaf);
|
1529
|
-
pub const GUID_DEVCLASS_WCEUSBS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x25dbce51_6c8f_4a72_8a6d_b54c2b4fc835);
|
1530
|
-
pub const GUID_DEVCLASS_WPD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xeec5ad98_8080_425f_922a_dabf3de3f69a);
|
1531
|
-
pub const GUID_DEVICE_INTERFACE_ARRIVAL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcb3a4004_46f0_11d0_b08f_00609713053f);
|
1532
|
-
pub const GUID_DEVICE_INTERFACE_REMOVAL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcb3a4005_46f0_11d0_b08f_00609713053f);
|
1533
|
-
pub const GUID_DEVICE_RESET_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x649fdf26_3bc0_4813_ad24_7e0c1eda3fa3);
|
1534
|
-
pub const GUID_DMA_CACHE_COHERENCY_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb520f7fa_8a5a_4e40_a3f6_6be1e162d935);
|
1535
|
-
pub const GUID_HWPROFILE_CHANGE_CANCELLED: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcb3a4002_46f0_11d0_b08f_00609713053f);
|
1536
|
-
pub const GUID_HWPROFILE_CHANGE_COMPLETE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcb3a4003_46f0_11d0_b08f_00609713053f);
|
1537
|
-
pub const GUID_HWPROFILE_QUERY_CHANGE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcb3a4001_46f0_11d0_b08f_00609713053f);
|
1538
|
-
pub const GUID_INT_ROUTE_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x70941bf4_0073_11d1_a09e_00c04fc340b1);
|
1539
|
-
pub const GUID_IOMMU_BUS_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1efee0b2_d278_4ae4_bddc_1b34dd648043);
|
1540
|
-
pub const GUID_KERNEL_SOFT_RESTART_CANCEL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x31d737e7_8c0b_468a_956e_9f433ec358fb);
|
1541
|
-
pub const GUID_KERNEL_SOFT_RESTART_FINALIZE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x20e91abd_350a_4d4f_8577_99c81507473a);
|
1542
|
-
pub const GUID_KERNEL_SOFT_RESTART_PREPARE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xde373def_a85c_4f76_8cbf_f96bea8bd10f);
|
1543
|
-
pub const GUID_LEGACY_DEVICE_DETECTION_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x50feb0de_596a_11d2_a5b8_0000f81a4619);
|
1544
|
-
pub const GUID_MF_ENUMERATION_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xaeb895f0_5586_11d1_8d84_00a0c906b244);
|
1545
|
-
pub const GUID_MSIX_TABLE_CONFIG_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1a6a460b_194f_455d_b34b_b84c5b05712b);
|
1546
|
-
pub const GUID_NPEM_CONTROL_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d95573d_b774_488a_b120_4f284a9eff51);
|
1547
|
-
pub const GUID_PARTITION_UNIT_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x52363f5b_d891_429b_8195_aec5fef6853c);
|
1548
|
-
pub const GUID_PCC_INTERFACE_INTERNAL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7cce62ce_c189_4814_a6a7_12112089e938);
|
1549
|
-
pub const GUID_PCC_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x3ee8ba63_0f59_4a24_8a45_35808bdd1249);
|
1550
|
-
pub const GUID_PCI_ATS_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x010a7fe8_96f5_4943_bedf_95e651b93412);
|
1551
|
-
pub const GUID_PCI_BUS_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x496b8281_6f25_11d0_beaf_08002be2092f);
|
1552
|
-
pub const GUID_PCI_BUS_INTERFACE_STANDARD2: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xde94e966_fdff_4c9c_9998_6747b150e74c);
|
1553
|
-
pub const GUID_PCI_DEVICE_PRESENT_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd1b82c26_bf49_45ef_b216_71cbd7889b57);
|
1554
|
-
pub const GUID_PCI_EXPRESS_LINK_QUIESCENT_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x146cd41c_dae3_4437_8aff_2af3f038099b);
|
1555
|
-
pub const GUID_PCI_EXPRESS_ROOT_PORT_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x83a7734a_84c7_4161_9a98_6000ed0c4a33);
|
1556
|
-
pub const GUID_PCI_FPGA_CONTROL_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2df3f7a8_b9b3_4063_9215_b5d14a0b266e);
|
1557
|
-
pub const GUID_PCI_PTM_CONTROL_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x348a5ebb_ba24_44b7_9916_285687735117);
|
1558
|
-
pub const GUID_PCI_SECURITY_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6e7f1451_199e_4acc_ba2d_762b4edf4674);
|
1559
|
-
pub const GUID_PCI_VIRTUALIZATION_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x64897b47_3a4a_4d75_bc74_89dd6c078293);
|
1560
|
-
pub const GUID_PCMCIA_BUS_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x76173af0_c504_11d1_947f_00c04fb960ee);
|
1561
|
-
pub const GUID_PNP_CUSTOM_NOTIFICATION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xaca73f8e_8d23_11d1_ac7d_0000f87571d0);
|
1562
|
-
pub const GUID_PNP_EXTENDED_ADDRESS_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb8e992ec_a797_4dc4_8846_84d041707446);
|
1563
|
-
pub const GUID_PNP_LOCATION_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x70211b0e_0afb_47db_afc1_410bf842497a);
|
1564
|
-
pub const GUID_PNP_POWER_NOTIFICATION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc2cf0660_eb7a_11d1_bd7f_0000f87571d0);
|
1565
|
-
pub const GUID_PNP_POWER_SETTING_CHANGE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x29c69b3e_c79a_43bf_bbde_a932fa1bea7e);
|
1566
|
-
pub const GUID_POWER_DEVICE_ENABLE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x827c0a6f_feb0_11d0_bd26_00aa00b7b32a);
|
1567
|
-
pub const GUID_POWER_DEVICE_TIMEOUTS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa45da735_feb0_11d0_bd26_00aa00b7b32a);
|
1568
|
-
pub const GUID_POWER_DEVICE_WAKE_ENABLE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa9546a82_feb0_11d0_bd26_00aa00b7b32a);
|
1569
|
-
pub const GUID_PROCESSOR_PCC_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x37b17e9a_c21c_4296_972d_11c4b32b28f0);
|
1570
|
-
pub const GUID_QUERY_CRASHDUMP_FUNCTIONS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9cc6b8ff_32e2_4834_b1de_b32ef8880a4b);
|
1571
|
-
pub const GUID_RECOVERY_NVMED_PREPARE_SHUTDOWN: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4b9770ea_bde7_400b_a9b9_4f684f54cc2a);
|
1572
|
-
pub const GUID_RECOVERY_PCI_PREPARE_SHUTDOWN: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x90d889de_8704_44cf_8115_ed8528d2b2da);
|
1573
|
-
pub const GUID_REENUMERATE_SELF_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2aeb0243_6a6e_486b_82fc_d815f6b97006);
|
1574
|
-
pub const GUID_SCM_BUS_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x25944783_ce79_4232_815e_4a30014e8eb4);
|
1575
|
-
pub const GUID_SCM_BUS_LD_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9b89307d_d76b_4f48_b186_54041ae92e8d);
|
1576
|
-
pub const GUID_SCM_BUS_NVD_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x8de064ff_b630_42e4_88ea_6f24c8641175);
|
1577
|
-
pub const GUID_SCM_PHYSICAL_NVDIMM_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x0079c21b_917e_405e_a9ce_0732b5bbcebd);
|
1578
|
-
pub const GUID_SDEV_IDENTIFIER_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x49d67af8_916c_4ee8_9df1_889f17d21e91);
|
1579
|
-
pub const GUID_SECURE_DRIVER_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x370f67e1_4ff5_4a94_9a35_06c5d9cc30e2);
|
1580
|
-
pub const GUID_TARGET_DEVICE_QUERY_REMOVE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcb3a4006_46f0_11d0_b08f_00609713053f);
|
1581
|
-
pub const GUID_TARGET_DEVICE_REMOVE_CANCELLED: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcb3a4007_46f0_11d0_b08f_00609713053f);
|
1582
|
-
pub const GUID_TARGET_DEVICE_REMOVE_COMPLETE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcb3a4008_46f0_11d0_b08f_00609713053f);
|
1583
|
-
pub const GUID_TARGET_DEVICE_TRANSPORT_RELATIONS_CHANGED: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xfcf528f6_a82f_47b1_ad3a_8050594cad28);
|
1584
|
-
pub const GUID_THERMAL_COOLING_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xecbe47a8_c498_4bb9_bd70_e867e0940d22);
|
1585
|
-
pub const GUID_TRANSLATOR_INTERFACE_STANDARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6c154a92_aacf_11d0_8d2a_00a0c906b244);
|
1586
|
-
pub const GUID_WUDF_DEVICE_HOST_PROBLEM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc43d25bd_9346_40ee_a2d2_d70c15f8b75b);
|
1587
|
-
pub const IDD_DYNAWIZ_ANALYZEDEV_PAGE: u32 = 10010u32;
|
1588
|
-
pub const IDD_DYNAWIZ_ANALYZE_NEXTPAGE: u32 = 10004u32;
|
1589
|
-
pub const IDD_DYNAWIZ_ANALYZE_PREVPAGE: u32 = 10003u32;
|
1590
|
-
pub const IDD_DYNAWIZ_FIRSTPAGE: u32 = 10000u32;
|
1591
|
-
pub const IDD_DYNAWIZ_INSTALLDETECTEDDEVS_PAGE: u32 = 10011u32;
|
1592
|
-
pub const IDD_DYNAWIZ_INSTALLDETECTED_NEXTPAGE: u32 = 10007u32;
|
1593
|
-
pub const IDD_DYNAWIZ_INSTALLDETECTED_NODEVS: u32 = 10008u32;
|
1594
|
-
pub const IDD_DYNAWIZ_INSTALLDETECTED_PREVPAGE: u32 = 10006u32;
|
1595
|
-
pub const IDD_DYNAWIZ_SELECTCLASS_PAGE: u32 = 10012u32;
|
1596
|
-
pub const IDD_DYNAWIZ_SELECTDEV_PAGE: u32 = 10009u32;
|
1597
|
-
pub const IDD_DYNAWIZ_SELECT_NEXTPAGE: u32 = 10002u32;
|
1598
|
-
pub const IDD_DYNAWIZ_SELECT_PREVPAGE: u32 = 10001u32;
|
1599
|
-
pub const IDF_CHECKFIRST: u32 = 256u32;
|
1600
|
-
pub const IDF_NOBEEP: u32 = 512u32;
|
1601
|
-
pub const IDF_NOBROWSE: u32 = 1u32;
|
1602
|
-
pub const IDF_NOCOMPRESSED: u32 = 8u32;
|
1603
|
-
pub const IDF_NODETAILS: u32 = 4u32;
|
1604
|
-
pub const IDF_NOFOREGROUND: u32 = 1024u32;
|
1605
|
-
pub const IDF_NOREMOVABLEMEDIAPROMPT: u32 = 4096u32;
|
1606
|
-
pub const IDF_NOSKIP: u32 = 2u32;
|
1607
|
-
pub const IDF_OEMDISK: u32 = 2147483648u32;
|
1608
|
-
pub const IDF_USEDISKNAMEASPROMPT: u32 = 8192u32;
|
1609
|
-
pub const IDF_WARNIFSKIP: u32 = 2048u32;
|
1610
|
-
pub const IDI_CLASSICON_OVERLAYFIRST: u32 = 500u32;
|
1611
|
-
pub const IDI_CLASSICON_OVERLAYLAST: u32 = 502u32;
|
1612
|
-
pub const IDI_CONFLICT: u32 = 161u32;
|
1613
|
-
pub const IDI_DISABLED_OVL: u32 = 501u32;
|
1614
|
-
pub const IDI_FORCED_OVL: u32 = 502u32;
|
1615
|
-
pub const IDI_PROBLEM_OVL: u32 = 500u32;
|
1616
|
-
pub const IDI_RESOURCE: u32 = 159u32;
|
1617
|
-
pub const IDI_RESOURCEFIRST: u32 = 159u32;
|
1618
|
-
pub const IDI_RESOURCELAST: u32 = 161u32;
|
1619
|
-
pub const IDI_RESOURCEOVERLAYFIRST: u32 = 161u32;
|
1620
|
-
pub const IDI_RESOURCEOVERLAYLAST: u32 = 161u32;
|
1621
|
-
pub const INFINFO_DEFAULT_SEARCH: u32 = 3u32;
|
1622
|
-
pub const INFINFO_INF_NAME_IS_ABSOLUTE: u32 = 2u32;
|
1623
|
-
pub const INFINFO_INF_PATH_LIST_SEARCH: u32 = 5u32;
|
1624
|
-
pub const INFINFO_INF_SPEC_IS_HINF: u32 = 1u32;
|
1625
|
-
pub const INFINFO_REVERSE_DEFAULT_SEARCH: u32 = 4u32;
|
1626
|
-
pub const INFSTR_BUS_ALL: windows_sys::core::PCWSTR = windows_sys::core::w!("BUS_ALL");
|
1627
|
-
pub const INFSTR_BUS_EISA: windows_sys::core::PCWSTR = windows_sys::core::w!("BUS_EISA");
|
1628
|
-
pub const INFSTR_BUS_ISA: windows_sys::core::PCWSTR = windows_sys::core::w!("BUS_ISA");
|
1629
|
-
pub const INFSTR_BUS_MCA: windows_sys::core::PCWSTR = windows_sys::core::w!("BUS_MCA");
|
1630
|
-
pub const INFSTR_CFGPRI_DESIRED: windows_sys::core::PCWSTR = windows_sys::core::w!("DESIRED");
|
1631
|
-
pub const INFSTR_CFGPRI_DISABLED: windows_sys::core::PCWSTR = windows_sys::core::w!("DISABLED");
|
1632
|
-
pub const INFSTR_CFGPRI_FORCECONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("FORCECONFIG");
|
1633
|
-
pub const INFSTR_CFGPRI_HARDRECONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("HARDRECONFIG");
|
1634
|
-
pub const INFSTR_CFGPRI_HARDWIRED: windows_sys::core::PCWSTR = windows_sys::core::w!("HARDWIRED");
|
1635
|
-
pub const INFSTR_CFGPRI_NORMAL: windows_sys::core::PCWSTR = windows_sys::core::w!("NORMAL");
|
1636
|
-
pub const INFSTR_CFGPRI_POWEROFF: windows_sys::core::PCWSTR = windows_sys::core::w!("POWEROFF");
|
1637
|
-
pub const INFSTR_CFGPRI_REBOOT: windows_sys::core::PCWSTR = windows_sys::core::w!("REBOOT");
|
1638
|
-
pub const INFSTR_CFGPRI_RESTART: windows_sys::core::PCWSTR = windows_sys::core::w!("RESTART");
|
1639
|
-
pub const INFSTR_CFGPRI_SUBOPTIMAL: windows_sys::core::PCWSTR = windows_sys::core::w!("SUBOPTIMAL");
|
1640
|
-
pub const INFSTR_CFGTYPE_BASIC: windows_sys::core::PCWSTR = windows_sys::core::w!("BASIC");
|
1641
|
-
pub const INFSTR_CFGTYPE_FORCED: windows_sys::core::PCWSTR = windows_sys::core::w!("FORCED");
|
1642
|
-
pub const INFSTR_CFGTYPE_OVERRIDE: windows_sys::core::PCWSTR = windows_sys::core::w!("OVERRIDE");
|
1643
|
-
pub const INFSTR_CLASS_SAFEEXCL: windows_sys::core::PCWSTR = windows_sys::core::w!("SAFE_EXCL");
|
1644
|
-
pub const INFSTR_CONTROLFLAGS_SECTION: windows_sys::core::PCWSTR = windows_sys::core::w!("ControlFlags");
|
1645
|
-
pub const INFSTR_DRIVERSELECT_FUNCTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("DriverSelectFunctions");
|
1646
|
-
pub const INFSTR_DRIVERSELECT_SECTION: windows_sys::core::PCWSTR = windows_sys::core::w!("DriverSelect");
|
1647
|
-
pub const INFSTR_DRIVERVERSION_SECTION: windows_sys::core::PCWSTR = windows_sys::core::w!("DriverVer");
|
1648
|
-
pub const INFSTR_KEY_ACTION: windows_sys::core::PCWSTR = windows_sys::core::w!("Action");
|
1649
|
-
pub const INFSTR_KEY_ALWAYSEXCLUDEFROMSELECT: windows_sys::core::PCWSTR = windows_sys::core::w!("AlwaysExcludeFromSelect");
|
1650
|
-
pub const INFSTR_KEY_BUFFER_SIZE: windows_sys::core::PCWSTR = windows_sys::core::w!("BufferSize");
|
1651
|
-
pub const INFSTR_KEY_CATALOGFILE: windows_sys::core::PCWSTR = windows_sys::core::w!("CatalogFile");
|
1652
|
-
pub const INFSTR_KEY_CHANNEL_ACCESS: windows_sys::core::PCWSTR = windows_sys::core::w!("Access");
|
1653
|
-
pub const INFSTR_KEY_CHANNEL_ENABLED: windows_sys::core::PCWSTR = windows_sys::core::w!("Enabled");
|
1654
|
-
pub const INFSTR_KEY_CHANNEL_ISOLATION: windows_sys::core::PCWSTR = windows_sys::core::w!("Isolation");
|
1655
|
-
pub const INFSTR_KEY_CHANNEL_VALUE: windows_sys::core::PCWSTR = windows_sys::core::w!("Value");
|
1656
|
-
pub const INFSTR_KEY_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Class");
|
1657
|
-
pub const INFSTR_KEY_CLASSGUID: windows_sys::core::PCWSTR = windows_sys::core::w!("ClassGUID");
|
1658
|
-
pub const INFSTR_KEY_CLOCK_TYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("ClockType");
|
1659
|
-
pub const INFSTR_KEY_CONFIGPRIORITY: windows_sys::core::PCWSTR = windows_sys::core::w!("ConfigPriority");
|
1660
|
-
pub const INFSTR_KEY_COPYFILESONLY: windows_sys::core::PCWSTR = windows_sys::core::w!("CopyFilesOnly");
|
1661
|
-
pub const INFSTR_KEY_DATA_ITEM: windows_sys::core::PCWSTR = windows_sys::core::w!("DataItem");
|
1662
|
-
pub const INFSTR_KEY_DELAYEDAUTOSTART: windows_sys::core::PCWSTR = windows_sys::core::w!("DelayedAutoStart");
|
1663
|
-
pub const INFSTR_KEY_DEPENDENCIES: windows_sys::core::PCWSTR = windows_sys::core::w!("Dependencies");
|
1664
|
-
pub const INFSTR_KEY_DESCRIPTION: windows_sys::core::PCWSTR = windows_sys::core::w!("Description");
|
1665
|
-
pub const INFSTR_KEY_DETECTLIST: windows_sys::core::PCWSTR = windows_sys::core::w!("DetectList");
|
1666
|
-
pub const INFSTR_KEY_DETPARAMS: windows_sys::core::PCWSTR = windows_sys::core::w!("Params");
|
1667
|
-
pub const INFSTR_KEY_DISABLE_REALTIME_PERSISTENCE: windows_sys::core::PCWSTR = windows_sys::core::w!("DisableRealtimePersistence");
|
1668
|
-
pub const INFSTR_KEY_DISPLAYNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("DisplayName");
|
1669
|
-
pub const INFSTR_KEY_DMA: windows_sys::core::PCWSTR = windows_sys::core::w!("DMA");
|
1670
|
-
pub const INFSTR_KEY_DMACONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("DMAConfig");
|
1671
|
-
pub const INFSTR_KEY_DRIVERSET: windows_sys::core::PCWSTR = windows_sys::core::w!("DriverSet");
|
1672
|
-
pub const INFSTR_KEY_ENABLED: windows_sys::core::PCWSTR = windows_sys::core::w!("Enabled");
|
1673
|
-
pub const INFSTR_KEY_ENABLE_FLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("EnableFlags");
|
1674
|
-
pub const INFSTR_KEY_ENABLE_LEVEL: windows_sys::core::PCWSTR = windows_sys::core::w!("EnableLevel");
|
1675
|
-
pub const INFSTR_KEY_ENABLE_PROPERTY: windows_sys::core::PCWSTR = windows_sys::core::w!("EnableProperty");
|
1676
|
-
pub const INFSTR_KEY_ERRORCONTROL: windows_sys::core::PCWSTR = windows_sys::core::w!("ErrorControl");
|
1677
|
-
pub const INFSTR_KEY_EXCLUDEFROMSELECT: windows_sys::core::PCWSTR = windows_sys::core::w!("ExcludeFromSelect");
|
1678
|
-
pub const INFSTR_KEY_EXCLUDERES: windows_sys::core::PCWSTR = windows_sys::core::w!("ExcludeRes");
|
1679
|
-
pub const INFSTR_KEY_EXTENSIONID: windows_sys::core::PCWSTR = windows_sys::core::w!("ExtensionId");
|
1680
|
-
pub const INFSTR_KEY_FAILURE_ACTION: windows_sys::core::PCWSTR = windows_sys::core::w!("Action");
|
1681
|
-
pub const INFSTR_KEY_FILE_MAX: windows_sys::core::PCWSTR = windows_sys::core::w!("FileMax");
|
1682
|
-
pub const INFSTR_KEY_FILE_NAME: windows_sys::core::PCWSTR = windows_sys::core::w!("FileName");
|
1683
|
-
pub const INFSTR_KEY_FLUSH_TIMER: windows_sys::core::PCWSTR = windows_sys::core::w!("FlushTimer");
|
1684
|
-
pub const INFSTR_KEY_FROMINET: windows_sys::core::PCWSTR = windows_sys::core::w!("FromINet");
|
1685
|
-
pub const INFSTR_KEY_HARDWARE_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Class");
|
1686
|
-
pub const INFSTR_KEY_HARDWARE_CLASSGUID: windows_sys::core::PCWSTR = windows_sys::core::w!("ClassGUID");
|
1687
|
-
pub const INFSTR_KEY_INTERACTIVEINSTALL: windows_sys::core::PCWSTR = windows_sys::core::w!("InteractiveInstall");
|
1688
|
-
pub const INFSTR_KEY_IO: windows_sys::core::PCWSTR = windows_sys::core::w!("IO");
|
1689
|
-
pub const INFSTR_KEY_IOCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("IOConfig");
|
1690
|
-
pub const INFSTR_KEY_IRQ: windows_sys::core::PCWSTR = windows_sys::core::w!("IRQ");
|
1691
|
-
pub const INFSTR_KEY_IRQCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("IRQConfig");
|
1692
|
-
pub const INFSTR_KEY_LOADORDERGROUP: windows_sys::core::PCWSTR = windows_sys::core::w!("LoadOrderGroup");
|
1693
|
-
pub const INFSTR_KEY_LOGGING_AUTOBACKUP: windows_sys::core::PCWSTR = windows_sys::core::w!("LoggingAutoBackup");
|
1694
|
-
pub const INFSTR_KEY_LOGGING_MAXSIZE: windows_sys::core::PCWSTR = windows_sys::core::w!("LoggingMaxSize");
|
1695
|
-
pub const INFSTR_KEY_LOGGING_RETENTION: windows_sys::core::PCWSTR = windows_sys::core::w!("LoggingRetention");
|
1696
|
-
pub const INFSTR_KEY_LOG_FILE_MODE: windows_sys::core::PCWSTR = windows_sys::core::w!("LogFileMode");
|
1697
|
-
pub const INFSTR_KEY_MATCH_ALL_KEYWORD: windows_sys::core::PCWSTR = windows_sys::core::w!("MatchAllKeyword");
|
1698
|
-
pub const INFSTR_KEY_MATCH_ANY_KEYWORD: windows_sys::core::PCWSTR = windows_sys::core::w!("MatchAnyKeyword");
|
1699
|
-
pub const INFSTR_KEY_MAXIMUM_BUFFERS: windows_sys::core::PCWSTR = windows_sys::core::w!("MaximumBuffers");
|
1700
|
-
pub const INFSTR_KEY_MAX_FILE_SIZE: windows_sys::core::PCWSTR = windows_sys::core::w!("MaxFileSize");
|
1701
|
-
pub const INFSTR_KEY_MEM: windows_sys::core::PCWSTR = windows_sys::core::w!("Mem");
|
1702
|
-
pub const INFSTR_KEY_MEMCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("MemConfig");
|
1703
|
-
pub const INFSTR_KEY_MEMLARGECONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("MemLargeConfig");
|
1704
|
-
pub const INFSTR_KEY_MESSAGE_FILE: windows_sys::core::PCWSTR = windows_sys::core::w!("MessageFile");
|
1705
|
-
pub const INFSTR_KEY_MFCARDCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("MfCardConfig");
|
1706
|
-
pub const INFSTR_KEY_MINIMUM_BUFFERS: windows_sys::core::PCWSTR = windows_sys::core::w!("MinimumBuffers");
|
1707
|
-
pub const INFSTR_KEY_NAME: windows_sys::core::PCWSTR = windows_sys::core::w!("Name");
|
1708
|
-
pub const INFSTR_KEY_NON_CRASH_FAILURES: windows_sys::core::PCWSTR = windows_sys::core::w!("NonCrashFailures");
|
1709
|
-
pub const INFSTR_KEY_NOSETUPINF: windows_sys::core::PCWSTR = windows_sys::core::w!("NoSetupInf");
|
1710
|
-
pub const INFSTR_KEY_PARAMETER_FILE: windows_sys::core::PCWSTR = windows_sys::core::w!("ParameterFile");
|
1711
|
-
pub const INFSTR_KEY_PATH: windows_sys::core::PCWSTR = windows_sys::core::w!("Path");
|
1712
|
-
pub const INFSTR_KEY_PCCARDCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("PcCardConfig");
|
1713
|
-
pub const INFSTR_KEY_PNPLOCKDOWN: windows_sys::core::PCWSTR = windows_sys::core::w!("PnpLockDown");
|
1714
|
-
pub const INFSTR_KEY_PROVIDER: windows_sys::core::PCWSTR = windows_sys::core::w!("Provider");
|
1715
|
-
pub const INFSTR_KEY_PROVIDER_NAME: windows_sys::core::PCWSTR = windows_sys::core::w!("ProviderName");
|
1716
|
-
pub const INFSTR_KEY_REQUESTADDITIONALSOFTWARE: windows_sys::core::PCWSTR = windows_sys::core::w!("RequestAdditionalSoftware");
|
1717
|
-
pub const INFSTR_KEY_REQUIREDPRIVILEGES: windows_sys::core::PCWSTR = windows_sys::core::w!("RequiredPrivileges");
|
1718
|
-
pub const INFSTR_KEY_RESET_PERIOD: windows_sys::core::PCWSTR = windows_sys::core::w!("ResetPeriod");
|
1719
|
-
pub const INFSTR_KEY_RESOURCE_FILE: windows_sys::core::PCWSTR = windows_sys::core::w!("ResourceFile");
|
1720
|
-
pub const INFSTR_KEY_SECURITY: windows_sys::core::PCWSTR = windows_sys::core::w!("Security");
|
1721
|
-
pub const INFSTR_KEY_SERVICEBINARY: windows_sys::core::PCWSTR = windows_sys::core::w!("ServiceBinary");
|
1722
|
-
pub const INFSTR_KEY_SERVICESIDTYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("ServiceSidType");
|
1723
|
-
pub const INFSTR_KEY_SERVICETYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("ServiceType");
|
1724
|
-
pub const INFSTR_KEY_SIGNATURE: windows_sys::core::PCWSTR = windows_sys::core::w!("Signature");
|
1725
|
-
pub const INFSTR_KEY_SKIPLIST: windows_sys::core::PCWSTR = windows_sys::core::w!("SkipList");
|
1726
|
-
pub const INFSTR_KEY_START: windows_sys::core::PCWSTR = windows_sys::core::w!("Start");
|
1727
|
-
pub const INFSTR_KEY_STARTNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("StartName");
|
1728
|
-
pub const INFSTR_KEY_STARTTYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("StartType");
|
1729
|
-
pub const INFSTR_KEY_SUB_TYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("SubType");
|
1730
|
-
pub const INFSTR_KEY_TRIGGER_TYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("TriggerType");
|
1731
|
-
pub const INFSTR_PLATFORM_NT: windows_sys::core::PCWSTR = windows_sys::core::w!("NT");
|
1732
|
-
pub const INFSTR_PLATFORM_NTALPHA: windows_sys::core::PCWSTR = windows_sys::core::w!("NTAlpha");
|
1733
|
-
pub const INFSTR_PLATFORM_NTAMD64: windows_sys::core::PCWSTR = windows_sys::core::w!("NTAMD64");
|
1734
|
-
pub const INFSTR_PLATFORM_NTARM: windows_sys::core::PCWSTR = windows_sys::core::w!("NTARM");
|
1735
|
-
pub const INFSTR_PLATFORM_NTARM64: windows_sys::core::PCWSTR = windows_sys::core::w!("NTARM64");
|
1736
|
-
pub const INFSTR_PLATFORM_NTAXP64: windows_sys::core::PCWSTR = windows_sys::core::w!("NTAXP64");
|
1737
|
-
pub const INFSTR_PLATFORM_NTIA64: windows_sys::core::PCWSTR = windows_sys::core::w!("NTIA64");
|
1738
|
-
pub const INFSTR_PLATFORM_NTMIPS: windows_sys::core::PCWSTR = windows_sys::core::w!("NTMIPS");
|
1739
|
-
pub const INFSTR_PLATFORM_NTPPC: windows_sys::core::PCWSTR = windows_sys::core::w!("NTPPC");
|
1740
|
-
pub const INFSTR_PLATFORM_NTX86: windows_sys::core::PCWSTR = windows_sys::core::w!("NTx86");
|
1741
|
-
pub const INFSTR_PLATFORM_WIN: windows_sys::core::PCWSTR = windows_sys::core::w!("Win");
|
1742
|
-
pub const INFSTR_REBOOT: windows_sys::core::PCWSTR = windows_sys::core::w!("Reboot");
|
1743
|
-
pub const INFSTR_RESTART: windows_sys::core::PCWSTR = windows_sys::core::w!("Restart");
|
1744
|
-
pub const INFSTR_RISK_BIOSROMRD: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_BIOSROMRD");
|
1745
|
-
pub const INFSTR_RISK_DELICATE: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_DELICATE");
|
1746
|
-
pub const INFSTR_RISK_IORD: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_IORD");
|
1747
|
-
pub const INFSTR_RISK_IOWR: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_IOWR");
|
1748
|
-
pub const INFSTR_RISK_LOW: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_LOW");
|
1749
|
-
pub const INFSTR_RISK_MEMRD: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_MEMRD");
|
1750
|
-
pub const INFSTR_RISK_MEMWR: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_MEMWR");
|
1751
|
-
pub const INFSTR_RISK_NONE: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_NONE");
|
1752
|
-
pub const INFSTR_RISK_QUERYDRV: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_QUERYDRV");
|
1753
|
-
pub const INFSTR_RISK_SWINT: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_SWINT");
|
1754
|
-
pub const INFSTR_RISK_UNRELIABLE: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_UNRELIABLE");
|
1755
|
-
pub const INFSTR_RISK_VERYHIGH: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_VERYHIGH");
|
1756
|
-
pub const INFSTR_RISK_VERYLOW: windows_sys::core::PCWSTR = windows_sys::core::w!("RISK_VERYLOW");
|
1757
|
-
pub const INFSTR_SECT_AUTOEXECBAT: windows_sys::core::PCWSTR = windows_sys::core::w!("AutoexecBatDrivers");
|
1758
|
-
pub const INFSTR_SECT_AVOIDCFGSYSDEV: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.AvoidCfgSysDev");
|
1759
|
-
pub const INFSTR_SECT_AVOIDENVDEV: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.AvoidEnvDev");
|
1760
|
-
pub const INFSTR_SECT_AVOIDINIDEV: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.AvoidIniDev");
|
1761
|
-
pub const INFSTR_SECT_BADACPIBIOS: windows_sys::core::PCWSTR = windows_sys::core::w!("BadACPIBios");
|
1762
|
-
pub const INFSTR_SECT_BADDISKBIOS: windows_sys::core::PCWSTR = windows_sys::core::w!("BadDiskBios");
|
1763
|
-
pub const INFSTR_SECT_BADDSBIOS: windows_sys::core::PCWSTR = windows_sys::core::w!("BadDSBios");
|
1764
|
-
pub const INFSTR_SECT_BADPMCALLBIOS: windows_sys::core::PCWSTR = windows_sys::core::w!("BadProtectedModeCallBios");
|
1765
|
-
pub const INFSTR_SECT_BADPNPBIOS: windows_sys::core::PCWSTR = windows_sys::core::w!("BadPnpBios");
|
1766
|
-
pub const INFSTR_SECT_BADRMCALLBIOS: windows_sys::core::PCWSTR = windows_sys::core::w!("BadRealModeCallBios");
|
1767
|
-
pub const INFSTR_SECT_BADROUTINGTABLEBIOS: windows_sys::core::PCWSTR = windows_sys::core::w!("BadPCIIRQRoutingTableBios");
|
1768
|
-
pub const INFSTR_SECT_CFGSYS: windows_sys::core::PCWSTR = windows_sys::core::w!("ConfigSysDrivers");
|
1769
|
-
pub const INFSTR_SECT_CLASS_INSTALL: windows_sys::core::PCWSTR = windows_sys::core::w!("ClassInstall");
|
1770
|
-
pub const INFSTR_SECT_CLASS_INSTALL_32: windows_sys::core::PCWSTR = windows_sys::core::w!("ClassInstall32");
|
1771
|
-
pub const INFSTR_SECT_DEFAULT_INSTALL: windows_sys::core::PCWSTR = windows_sys::core::w!("DefaultInstall");
|
1772
|
-
pub const INFSTR_SECT_DEFAULT_UNINSTALL: windows_sys::core::PCWSTR = windows_sys::core::w!("DefaultUninstall");
|
1773
|
-
pub const INFSTR_SECT_DETCLASSINFO: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.ClassInfo");
|
1774
|
-
pub const INFSTR_SECT_DETMODULES: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.Modules");
|
1775
|
-
pub const INFSTR_SECT_DETOPTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.Options");
|
1776
|
-
pub const INFSTR_SECT_DEVINFS: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.DevINFs");
|
1777
|
-
pub const INFSTR_SECT_DISPLAY_CLEANUP: windows_sys::core::PCWSTR = windows_sys::core::w!("DisplayCleanup");
|
1778
|
-
pub const INFSTR_SECT_EXTENSIONCONTRACTS: windows_sys::core::PCWSTR = windows_sys::core::w!("ExtensionContracts");
|
1779
|
-
pub const INFSTR_SECT_FORCEHWVERIFY: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.ForceHWVerify");
|
1780
|
-
pub const INFSTR_SECT_GOODACPIBIOS: windows_sys::core::PCWSTR = windows_sys::core::w!("GoodACPIBios");
|
1781
|
-
pub const INFSTR_SECT_HPOMNIBOOK: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.HPOmnibook");
|
1782
|
-
pub const INFSTR_SECT_INTERFACE_INSTALL_32: windows_sys::core::PCWSTR = windows_sys::core::w!("InterfaceInstall32");
|
1783
|
-
pub const INFSTR_SECT_MACHINEIDBIOS: windows_sys::core::PCWSTR = windows_sys::core::w!("MachineIDBios");
|
1784
|
-
pub const INFSTR_SECT_MANUALDEV: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.ManualDev");
|
1785
|
-
pub const INFSTR_SECT_MFG: windows_sys::core::PCWSTR = windows_sys::core::w!("Manufacturer");
|
1786
|
-
pub const INFSTR_SECT_REGCFGSYSDEV: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.RegCfgSysDev");
|
1787
|
-
pub const INFSTR_SECT_REGENVDEV: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.RegEnvDev");
|
1788
|
-
pub const INFSTR_SECT_REGINIDEV: windows_sys::core::PCWSTR = windows_sys::core::w!("Det.RegIniDev");
|
1789
|
-
pub const INFSTR_SECT_SYSINI: windows_sys::core::PCWSTR = windows_sys::core::w!("SystemIniDrivers");
|
1790
|
-
pub const INFSTR_SECT_SYSINIDRV: windows_sys::core::PCWSTR = windows_sys::core::w!("SystemIniDriversLine");
|
1791
|
-
pub const INFSTR_SECT_TARGETCOMPUTERS: windows_sys::core::PCWSTR = windows_sys::core::w!("TargetComputers");
|
1792
|
-
pub const INFSTR_SECT_VERSION: windows_sys::core::PCWSTR = windows_sys::core::w!("Version");
|
1793
|
-
pub const INFSTR_SECT_WININIRUN: windows_sys::core::PCWSTR = windows_sys::core::w!("WinIniRunLine");
|
1794
|
-
pub const INFSTR_SOFTWAREVERSION_SECTION: windows_sys::core::PCWSTR = windows_sys::core::w!("SoftwareVersion");
|
1795
|
-
pub const INFSTR_STRKEY_DRVDESC: windows_sys::core::PCWSTR = windows_sys::core::w!("DriverDesc");
|
1796
|
-
pub const INFSTR_SUBKEY_COINSTALLERS: windows_sys::core::PCWSTR = windows_sys::core::w!("CoInstallers");
|
1797
|
-
pub const INFSTR_SUBKEY_CTL: windows_sys::core::PCWSTR = windows_sys::core::w!("CTL");
|
1798
|
-
pub const INFSTR_SUBKEY_DET: windows_sys::core::PCWSTR = windows_sys::core::w!("Det");
|
1799
|
-
pub const INFSTR_SUBKEY_EVENTS: windows_sys::core::PCWSTR = windows_sys::core::w!("Events");
|
1800
|
-
pub const INFSTR_SUBKEY_FACTDEF: windows_sys::core::PCWSTR = windows_sys::core::w!("FactDef");
|
1801
|
-
pub const INFSTR_SUBKEY_FILTERS: windows_sys::core::PCWSTR = windows_sys::core::w!("Filters");
|
1802
|
-
pub const INFSTR_SUBKEY_HW: windows_sys::core::PCWSTR = windows_sys::core::w!("Hw");
|
1803
|
-
pub const INFSTR_SUBKEY_INTERFACES: windows_sys::core::PCWSTR = windows_sys::core::w!("Interfaces");
|
1804
|
-
pub const INFSTR_SUBKEY_LOGCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("LogConfig");
|
1805
|
-
pub const INFSTR_SUBKEY_LOGCONFIGOVERRIDE: windows_sys::core::PCWSTR = windows_sys::core::w!("LogConfigOverride");
|
1806
|
-
pub const INFSTR_SUBKEY_NORESOURCEDUPS: windows_sys::core::PCWSTR = windows_sys::core::w!("NoResDup");
|
1807
|
-
pub const INFSTR_SUBKEY_POSSIBLEDUPS: windows_sys::core::PCWSTR = windows_sys::core::w!("PosDup");
|
1808
|
-
pub const INFSTR_SUBKEY_SERVICES: windows_sys::core::PCWSTR = windows_sys::core::w!("Services");
|
1809
|
-
pub const INFSTR_SUBKEY_SOFTWARE: windows_sys::core::PCWSTR = windows_sys::core::w!("Software");
|
1810
|
-
pub const INFSTR_SUBKEY_WMI: windows_sys::core::PCWSTR = windows_sys::core::w!("WMI");
|
1811
|
-
pub const INF_STYLE_CACHE_DISABLE: INF_STYLE = 32u32;
|
1812
|
-
pub const INF_STYLE_CACHE_ENABLE: INF_STYLE = 16u32;
|
1813
|
-
pub const INF_STYLE_CACHE_IGNORE: INF_STYLE = 64u32;
|
1814
|
-
pub const INF_STYLE_NONE: INF_STYLE = 0u32;
|
1815
|
-
pub const INF_STYLE_OLDNT: INF_STYLE = 1u32;
|
1816
|
-
pub const INF_STYLE_WIN4: INF_STYLE = 2u32;
|
1817
|
-
pub const INSTALLFLAG_BITS: UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS = 7u32;
|
1818
|
-
pub const INSTALLFLAG_FORCE: UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS = 1u32;
|
1819
|
-
pub const INSTALLFLAG_NONINTERACTIVE: UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS = 4u32;
|
1820
|
-
pub const INSTALLFLAG_READONLY: UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS = 2u32;
|
1821
|
-
pub const IOA_Local: u32 = 255u32;
|
1822
|
-
pub const IO_ALIAS_10_BIT_DECODE: u32 = 4u32;
|
1823
|
-
pub const IO_ALIAS_12_BIT_DECODE: u32 = 16u32;
|
1824
|
-
pub const IO_ALIAS_16_BIT_DECODE: u32 = 0u32;
|
1825
|
-
pub const IO_ALIAS_POSITIVE_DECODE: u32 = 255u32;
|
1826
|
-
pub const LCPRI_BOOTCONFIG: u32 = 1u32;
|
1827
|
-
pub const LCPRI_DESIRED: u32 = 8192u32;
|
1828
|
-
pub const LCPRI_DISABLED: u32 = 65535u32;
|
1829
|
-
pub const LCPRI_FORCECONFIG: u32 = 0u32;
|
1830
|
-
pub const LCPRI_HARDRECONFIG: u32 = 49152u32;
|
1831
|
-
pub const LCPRI_HARDWIRED: u32 = 57344u32;
|
1832
|
-
pub const LCPRI_IMPOSSIBLE: u32 = 61440u32;
|
1833
|
-
pub const LCPRI_LASTBESTCONFIG: u32 = 16383u32;
|
1834
|
-
pub const LCPRI_LASTSOFTCONFIG: u32 = 32767u32;
|
1835
|
-
pub const LCPRI_NORMAL: u32 = 12288u32;
|
1836
|
-
pub const LCPRI_POWEROFF: u32 = 40960u32;
|
1837
|
-
pub const LCPRI_REBOOT: u32 = 36864u32;
|
1838
|
-
pub const LCPRI_RESTART: u32 = 32768u32;
|
1839
|
-
pub const LCPRI_SUBOPTIMAL: u32 = 20480u32;
|
1840
|
-
pub const LINE_LEN: u32 = 256u32;
|
1841
|
-
pub const LOG_CONF_BITS: u32 = 7u32;
|
1842
|
-
pub const LogSevError: u32 = 2u32;
|
1843
|
-
pub const LogSevFatalError: u32 = 3u32;
|
1844
|
-
pub const LogSevInformation: u32 = 0u32;
|
1845
|
-
pub const LogSevMaximum: u32 = 4u32;
|
1846
|
-
pub const LogSevWarning: u32 = 1u32;
|
1847
|
-
pub const MAX_CLASS_NAME_LEN: u32 = 32u32;
|
1848
|
-
pub const MAX_CONFIG_VALUE: u32 = 9999u32;
|
1849
|
-
pub const MAX_DEVICE_ID_LEN: u32 = 200u32;
|
1850
|
-
pub const MAX_DEVNODE_ID_LEN: u32 = 200u32;
|
1851
|
-
pub const MAX_DMA_CHANNELS: u32 = 7u32;
|
1852
|
-
pub const MAX_GUID_STRING_LEN: u32 = 39u32;
|
1853
|
-
pub const MAX_IDD_DYNAWIZ_RESOURCE_ID: u32 = 11000u32;
|
1854
|
-
pub const MAX_INFSTR_STRKEY_LEN: u32 = 32u32;
|
1855
|
-
pub const MAX_INF_FLAG: u32 = 20u32;
|
1856
|
-
pub const MAX_INF_SECTION_NAME_LENGTH: u32 = 255u32;
|
1857
|
-
pub const MAX_INF_STRING_LENGTH: u32 = 4096u32;
|
1858
|
-
pub const MAX_INSTALLWIZARD_DYNAPAGES: u32 = 20u32;
|
1859
|
-
pub const MAX_INSTANCE_VALUE: u32 = 9999u32;
|
1860
|
-
pub const MAX_INSTRUCTION_LEN: u32 = 256u32;
|
1861
|
-
pub const MAX_IO_PORTS: u32 = 20u32;
|
1862
|
-
pub const MAX_IRQS: u32 = 7u32;
|
1863
|
-
pub const MAX_KEY_LEN: u32 = 100u32;
|
1864
|
-
pub const MAX_LABEL_LEN: u32 = 30u32;
|
1865
|
-
pub const MAX_LCPRI: u32 = 65535u32;
|
1866
|
-
pub const MAX_MEM_REGISTERS: u32 = 9u32;
|
1867
|
-
pub const MAX_PRIORITYSTR_LEN: u32 = 16u32;
|
1868
|
-
pub const MAX_PROFILE_LEN: u32 = 80u32;
|
1869
|
-
pub const MAX_SERVICE_NAME_LEN: u32 = 256u32;
|
1870
|
-
pub const MAX_SUBTITLE_LEN: u32 = 256u32;
|
1871
|
-
pub const MAX_TITLE_LEN: u32 = 60u32;
|
1872
|
-
pub const MIN_IDD_DYNAWIZ_RESOURCE_ID: u32 = 10000u32;
|
1873
|
-
pub const NDW_INSTALLFLAG_CI_PICKED_OEM: u32 = 32768u32;
|
1874
|
-
pub const NDW_INSTALLFLAG_DIDFACTDEFS: u32 = 1u32;
|
1875
|
-
pub const NDW_INSTALLFLAG_EXPRESSINTRO: u32 = 1024u32;
|
1876
|
-
pub const NDW_INSTALLFLAG_HARDWAREALLREADYIN: u32 = 2u32;
|
1877
|
-
pub const NDW_INSTALLFLAG_INSTALLSPECIFIC: u32 = 8192u32;
|
1878
|
-
pub const NDW_INSTALLFLAG_KNOWNCLASS: u32 = 524288u32;
|
1879
|
-
pub const NDW_INSTALLFLAG_NEEDSHUTDOWN: u32 = 512u32;
|
1880
|
-
pub const NDW_INSTALLFLAG_NODETECTEDDEVS: u32 = 4096u32;
|
1881
|
-
pub const NDW_INSTALLFLAG_PCMCIADEVICE: u32 = 131072u32;
|
1882
|
-
pub const NDW_INSTALLFLAG_PCMCIAMODE: u32 = 65536u32;
|
1883
|
-
pub const NDW_INSTALLFLAG_SKIPCLASSLIST: u32 = 16384u32;
|
1884
|
-
pub const NDW_INSTALLFLAG_SKIPISDEVINSTALLED: u32 = 2048u32;
|
1885
|
-
pub const NDW_INSTALLFLAG_USERCANCEL: u32 = 262144u32;
|
1886
|
-
pub const NUM_CM_PROB: u32 = 58u32;
|
1887
|
-
pub const NUM_CM_PROB_V1: u32 = 37u32;
|
1888
|
-
pub const NUM_CM_PROB_V2: u32 = 50u32;
|
1889
|
-
pub const NUM_CM_PROB_V3: u32 = 51u32;
|
1890
|
-
pub const NUM_CM_PROB_V4: u32 = 52u32;
|
1891
|
-
pub const NUM_CM_PROB_V5: u32 = 53u32;
|
1892
|
-
pub const NUM_CM_PROB_V6: u32 = 54u32;
|
1893
|
-
pub const NUM_CM_PROB_V7: u32 = 55u32;
|
1894
|
-
pub const NUM_CM_PROB_V8: u32 = 57u32;
|
1895
|
-
pub const NUM_CM_PROB_V9: u32 = 58u32;
|
1896
|
-
pub const NUM_CR_RESULTS: CONFIGRET = 60u32;
|
1897
|
-
pub const NUM_LOG_CONF: CM_LOG_CONF = 6u32;
|
1898
|
-
pub const OVERRIDE_LOG_CONF: CM_LOG_CONF = 5u32;
|
1899
|
-
pub const PCD_MAX_IO: u32 = 2u32;
|
1900
|
-
pub const PCD_MAX_MEMORY: u32 = 2u32;
|
1901
|
-
pub const PNP_VetoAlreadyRemoved: PNP_VETO_TYPE = 13i32;
|
1902
|
-
pub const PNP_VetoDevice: PNP_VETO_TYPE = 6i32;
|
1903
|
-
pub const PNP_VetoDriver: PNP_VETO_TYPE = 7i32;
|
1904
|
-
pub const PNP_VetoIllegalDeviceRequest: PNP_VETO_TYPE = 8i32;
|
1905
|
-
pub const PNP_VetoInsufficientPower: PNP_VETO_TYPE = 9i32;
|
1906
|
-
pub const PNP_VetoInsufficientRights: PNP_VETO_TYPE = 12i32;
|
1907
|
-
pub const PNP_VetoLegacyDevice: PNP_VETO_TYPE = 1i32;
|
1908
|
-
pub const PNP_VetoLegacyDriver: PNP_VETO_TYPE = 11i32;
|
1909
|
-
pub const PNP_VetoNonDisableable: PNP_VETO_TYPE = 10i32;
|
1910
|
-
pub const PNP_VetoOutstandingOpen: PNP_VETO_TYPE = 5i32;
|
1911
|
-
pub const PNP_VetoPendingClose: PNP_VETO_TYPE = 2i32;
|
1912
|
-
pub const PNP_VetoTypeUnknown: PNP_VETO_TYPE = 0i32;
|
1913
|
-
pub const PNP_VetoWindowsApp: PNP_VETO_TYPE = 3i32;
|
1914
|
-
pub const PNP_VetoWindowsService: PNP_VETO_TYPE = 4i32;
|
1915
|
-
pub const PRIORITY_BIT: u32 = 8u32;
|
1916
|
-
pub const PRIORITY_EQUAL_FIRST: u32 = 8u32;
|
1917
|
-
pub const PRIORITY_EQUAL_LAST: u32 = 0u32;
|
1918
|
-
pub const ROLLBACK_BITS: DIROLLBACKDRIVER_FLAGS = 1u32;
|
1919
|
-
pub const ROLLBACK_FLAG_NO_UI: DIROLLBACKDRIVER_FLAGS = 1u32;
|
1920
|
-
pub const RegDisposition_Bits: u32 = 1u32;
|
1921
|
-
pub const RegDisposition_OpenAlways: u32 = 0u32;
|
1922
|
-
pub const RegDisposition_OpenExisting: u32 = 1u32;
|
1923
|
-
pub const ResType_All: CM_RESTYPE = 0u32;
|
1924
|
-
pub const ResType_BusNumber: CM_RESTYPE = 6u32;
|
1925
|
-
pub const ResType_ClassSpecific: CM_RESTYPE = 65535u32;
|
1926
|
-
pub const ResType_Connection: CM_RESTYPE = 32772u32;
|
1927
|
-
pub const ResType_DMA: CM_RESTYPE = 3u32;
|
1928
|
-
pub const ResType_DevicePrivate: CM_RESTYPE = 32769u32;
|
1929
|
-
pub const ResType_DoNotUse: CM_RESTYPE = 5u32;
|
1930
|
-
pub const ResType_IO: CM_RESTYPE = 2u32;
|
1931
|
-
pub const ResType_IRQ: CM_RESTYPE = 4u32;
|
1932
|
-
pub const ResType_Ignored_Bit: CM_RESTYPE = 32768u32;
|
1933
|
-
pub const ResType_MAX: CM_RESTYPE = 7u32;
|
1934
|
-
pub const ResType_Mem: CM_RESTYPE = 1u32;
|
1935
|
-
pub const ResType_MemLarge: CM_RESTYPE = 7u32;
|
1936
|
-
pub const ResType_MfCardConfig: CM_RESTYPE = 32771u32;
|
1937
|
-
pub const ResType_None: CM_RESTYPE = 0u32;
|
1938
|
-
pub const ResType_PcCardConfig: CM_RESTYPE = 32770u32;
|
1939
|
-
pub const ResType_Reserved: CM_RESTYPE = 32768u32;
|
1940
|
-
pub const SCWMI_CLOBBER_SECURITY: u32 = 1u32;
|
1941
|
-
pub const SETDIRID_NOT_FULL_PATH: u32 = 1u32;
|
1942
|
-
pub const SIGNERSCORE_AUTHENTICODE: u32 = 251658240u32;
|
1943
|
-
pub const SIGNERSCORE_INBOX: u32 = 218103811u32;
|
1944
|
-
pub const SIGNERSCORE_LOGO_PREMIUM: u32 = 218103809u32;
|
1945
|
-
pub const SIGNERSCORE_LOGO_STANDARD: u32 = 218103810u32;
|
1946
|
-
pub const SIGNERSCORE_MASK: u32 = 4278190080u32;
|
1947
|
-
pub const SIGNERSCORE_SIGNED_MASK: u32 = 4026531840u32;
|
1948
|
-
pub const SIGNERSCORE_UNCLASSIFIED: u32 = 218103812u32;
|
1949
|
-
pub const SIGNERSCORE_UNKNOWN: u32 = 4278190080u32;
|
1950
|
-
pub const SIGNERSCORE_UNSIGNED: u32 = 2147483648u32;
|
1951
|
-
pub const SIGNERSCORE_W9X_SUSPECT: u32 = 3221225472u32;
|
1952
|
-
pub const SIGNERSCORE_WHQL: u32 = 218103813u32;
|
1953
|
-
pub const SPCRP_CHARACTERISTICS: u32 = 27u32;
|
1954
|
-
pub const SPCRP_DEVTYPE: u32 = 25u32;
|
1955
|
-
pub const SPCRP_EXCLUSIVE: u32 = 26u32;
|
1956
|
-
pub const SPCRP_LOWERFILTERS: u32 = 18u32;
|
1957
|
-
pub const SPCRP_MAXIMUM_PROPERTY: u32 = 28u32;
|
1958
|
-
pub const SPCRP_SECURITY: u32 = 23u32;
|
1959
|
-
pub const SPCRP_SECURITY_SDS: u32 = 24u32;
|
1960
|
-
pub const SPCRP_UPPERFILTERS: u32 = 17u32;
|
1961
|
-
pub const SPDIT_CLASSDRIVER: SETUP_DI_DRIVER_TYPE = 1u32;
|
1962
|
-
pub const SPDIT_COMPATDRIVER: SETUP_DI_DRIVER_TYPE = 2u32;
|
1963
|
-
pub const SPDIT_NODRIVER: u32 = 0u32;
|
1964
|
-
pub const SPDRP_ADDRESS: SETUP_DI_REGISTRY_PROPERTY = 28u32;
|
1965
|
-
pub const SPDRP_BASE_CONTAINERID: SETUP_DI_REGISTRY_PROPERTY = 36u32;
|
1966
|
-
pub const SPDRP_BUSNUMBER: SETUP_DI_REGISTRY_PROPERTY = 21u32;
|
1967
|
-
pub const SPDRP_BUSTYPEGUID: SETUP_DI_REGISTRY_PROPERTY = 19u32;
|
1968
|
-
pub const SPDRP_CAPABILITIES: SETUP_DI_REGISTRY_PROPERTY = 15u32;
|
1969
|
-
pub const SPDRP_CHARACTERISTICS: SETUP_DI_REGISTRY_PROPERTY = 27u32;
|
1970
|
-
pub const SPDRP_CLASS: SETUP_DI_REGISTRY_PROPERTY = 7u32;
|
1971
|
-
pub const SPDRP_CLASSGUID: SETUP_DI_REGISTRY_PROPERTY = 8u32;
|
1972
|
-
pub const SPDRP_COMPATIBLEIDS: SETUP_DI_REGISTRY_PROPERTY = 2u32;
|
1973
|
-
pub const SPDRP_CONFIGFLAGS: SETUP_DI_REGISTRY_PROPERTY = 10u32;
|
1974
|
-
pub const SPDRP_DEVICEDESC: SETUP_DI_REGISTRY_PROPERTY = 0u32;
|
1975
|
-
pub const SPDRP_DEVICE_POWER_DATA: SETUP_DI_REGISTRY_PROPERTY = 30u32;
|
1976
|
-
pub const SPDRP_DEVTYPE: SETUP_DI_REGISTRY_PROPERTY = 25u32;
|
1977
|
-
pub const SPDRP_DRIVER: SETUP_DI_REGISTRY_PROPERTY = 9u32;
|
1978
|
-
pub const SPDRP_ENUMERATOR_NAME: SETUP_DI_REGISTRY_PROPERTY = 22u32;
|
1979
|
-
pub const SPDRP_EXCLUSIVE: SETUP_DI_REGISTRY_PROPERTY = 26u32;
|
1980
|
-
pub const SPDRP_FRIENDLYNAME: SETUP_DI_REGISTRY_PROPERTY = 12u32;
|
1981
|
-
pub const SPDRP_HARDWAREID: SETUP_DI_REGISTRY_PROPERTY = 1u32;
|
1982
|
-
pub const SPDRP_INSTALL_STATE: SETUP_DI_REGISTRY_PROPERTY = 34u32;
|
1983
|
-
pub const SPDRP_LEGACYBUSTYPE: SETUP_DI_REGISTRY_PROPERTY = 20u32;
|
1984
|
-
pub const SPDRP_LOCATION_INFORMATION: SETUP_DI_REGISTRY_PROPERTY = 13u32;
|
1985
|
-
pub const SPDRP_LOCATION_PATHS: SETUP_DI_REGISTRY_PROPERTY = 35u32;
|
1986
|
-
pub const SPDRP_LOWERFILTERS: SETUP_DI_REGISTRY_PROPERTY = 18u32;
|
1987
|
-
pub const SPDRP_MAXIMUM_PROPERTY: SETUP_DI_REGISTRY_PROPERTY = 37u32;
|
1988
|
-
pub const SPDRP_MFG: SETUP_DI_REGISTRY_PROPERTY = 11u32;
|
1989
|
-
pub const SPDRP_PHYSICAL_DEVICE_OBJECT_NAME: SETUP_DI_REGISTRY_PROPERTY = 14u32;
|
1990
|
-
pub const SPDRP_REMOVAL_POLICY: SETUP_DI_REGISTRY_PROPERTY = 31u32;
|
1991
|
-
pub const SPDRP_REMOVAL_POLICY_HW_DEFAULT: SETUP_DI_REGISTRY_PROPERTY = 32u32;
|
1992
|
-
pub const SPDRP_REMOVAL_POLICY_OVERRIDE: SETUP_DI_REGISTRY_PROPERTY = 33u32;
|
1993
|
-
pub const SPDRP_SECURITY: SETUP_DI_REGISTRY_PROPERTY = 23u32;
|
1994
|
-
pub const SPDRP_SECURITY_SDS: SETUP_DI_REGISTRY_PROPERTY = 24u32;
|
1995
|
-
pub const SPDRP_SERVICE: SETUP_DI_REGISTRY_PROPERTY = 4u32;
|
1996
|
-
pub const SPDRP_UI_NUMBER: SETUP_DI_REGISTRY_PROPERTY = 16u32;
|
1997
|
-
pub const SPDRP_UI_NUMBER_DESC_FORMAT: SETUP_DI_REGISTRY_PROPERTY = 29u32;
|
1998
|
-
pub const SPDRP_UNUSED0: SETUP_DI_REGISTRY_PROPERTY = 3u32;
|
1999
|
-
pub const SPDRP_UNUSED1: SETUP_DI_REGISTRY_PROPERTY = 5u32;
|
2000
|
-
pub const SPDRP_UNUSED2: SETUP_DI_REGISTRY_PROPERTY = 6u32;
|
2001
|
-
pub const SPDRP_UPPERFILTERS: SETUP_DI_REGISTRY_PROPERTY = 17u32;
|
2002
|
-
pub const SPDSL_DISALLOW_NEGATIVE_ADJUST: u32 = 2u32;
|
2003
|
-
pub const SPDSL_IGNORE_DISK: u32 = 1u32;
|
2004
|
-
pub const SPFILELOG_FORCENEW: u32 = 2u32;
|
2005
|
-
pub const SPFILELOG_OEMFILE: u32 = 1u32;
|
2006
|
-
pub const SPFILELOG_QUERYONLY: u32 = 4u32;
|
2007
|
-
pub const SPFILELOG_SYSTEMLOG: u32 = 1u32;
|
2008
|
-
pub const SPFILENOTIFY_BACKUPERROR: u32 = 22u32;
|
2009
|
-
pub const SPFILENOTIFY_CABINETINFO: u32 = 16u32;
|
2010
|
-
pub const SPFILENOTIFY_COPYERROR: u32 = 13u32;
|
2011
|
-
pub const SPFILENOTIFY_DELETEERROR: u32 = 7u32;
|
2012
|
-
pub const SPFILENOTIFY_ENDBACKUP: u32 = 23u32;
|
2013
|
-
pub const SPFILENOTIFY_ENDCOPY: u32 = 12u32;
|
2014
|
-
pub const SPFILENOTIFY_ENDDELETE: u32 = 6u32;
|
2015
|
-
pub const SPFILENOTIFY_ENDQUEUE: u32 = 2u32;
|
2016
|
-
pub const SPFILENOTIFY_ENDREGISTRATION: u32 = 32u32;
|
2017
|
-
pub const SPFILENOTIFY_ENDRENAME: u32 = 9u32;
|
2018
|
-
pub const SPFILENOTIFY_ENDSUBQUEUE: u32 = 4u32;
|
2019
|
-
pub const SPFILENOTIFY_FILEEXTRACTED: u32 = 19u32;
|
2020
|
-
pub const SPFILENOTIFY_FILEINCABINET: u32 = 17u32;
|
2021
|
-
pub const SPFILENOTIFY_FILEOPDELAYED: u32 = 20u32;
|
2022
|
-
pub const SPFILENOTIFY_LANGMISMATCH: u32 = 65536u32;
|
2023
|
-
pub const SPFILENOTIFY_NEEDMEDIA: u32 = 14u32;
|
2024
|
-
pub const SPFILENOTIFY_NEEDNEWCABINET: u32 = 18u32;
|
2025
|
-
pub const SPFILENOTIFY_QUEUESCAN: u32 = 15u32;
|
2026
|
-
pub const SPFILENOTIFY_QUEUESCAN_EX: u32 = 24u32;
|
2027
|
-
pub const SPFILENOTIFY_QUEUESCAN_SIGNERINFO: u32 = 64u32;
|
2028
|
-
pub const SPFILENOTIFY_RENAMEERROR: u32 = 10u32;
|
2029
|
-
pub const SPFILENOTIFY_STARTBACKUP: u32 = 21u32;
|
2030
|
-
pub const SPFILENOTIFY_STARTCOPY: u32 = 11u32;
|
2031
|
-
pub const SPFILENOTIFY_STARTDELETE: u32 = 5u32;
|
2032
|
-
pub const SPFILENOTIFY_STARTQUEUE: u32 = 1u32;
|
2033
|
-
pub const SPFILENOTIFY_STARTREGISTRATION: u32 = 25u32;
|
2034
|
-
pub const SPFILENOTIFY_STARTRENAME: u32 = 8u32;
|
2035
|
-
pub const SPFILENOTIFY_STARTSUBQUEUE: u32 = 3u32;
|
2036
|
-
pub const SPFILENOTIFY_TARGETEXISTS: u32 = 131072u32;
|
2037
|
-
pub const SPFILENOTIFY_TARGETNEWER: u32 = 262144u32;
|
2038
|
-
pub const SPFILEQ_FILE_IN_USE: u32 = 1u32;
|
2039
|
-
pub const SPFILEQ_REBOOT_IN_PROGRESS: u32 = 4u32;
|
2040
|
-
pub const SPFILEQ_REBOOT_RECOMMENDED: u32 = 2u32;
|
2041
|
-
pub const SPID_ACTIVE: u32 = 1u32;
|
2042
|
-
pub const SPID_DEFAULT: u32 = 2u32;
|
2043
|
-
pub const SPID_REMOVED: u32 = 4u32;
|
2044
|
-
pub const SPINST_ALL: u32 = 2047u32;
|
2045
|
-
pub const SPINST_BITREG: u32 = 32u32;
|
2046
|
-
pub const SPINST_COPYINF: u32 = 512u32;
|
2047
|
-
pub const SPINST_DEVICEINSTALL: u32 = 1048576u32;
|
2048
|
-
pub const SPINST_FILES: u32 = 16u32;
|
2049
|
-
pub const SPINST_INI2REG: u32 = 8u32;
|
2050
|
-
pub const SPINST_INIFILES: u32 = 2u32;
|
2051
|
-
pub const SPINST_LOGCONFIG: u32 = 1u32;
|
2052
|
-
pub const SPINST_LOGCONFIGS_ARE_OVERRIDES: u32 = 262144u32;
|
2053
|
-
pub const SPINST_LOGCONFIG_IS_FORCED: u32 = 131072u32;
|
2054
|
-
pub const SPINST_PROFILEITEMS: u32 = 256u32;
|
2055
|
-
pub const SPINST_PROPERTIES: u32 = 1024u32;
|
2056
|
-
pub const SPINST_REGISTERCALLBACKAWARE: u32 = 524288u32;
|
2057
|
-
pub const SPINST_REGISTRY: u32 = 4u32;
|
2058
|
-
pub const SPINST_REGSVR: u32 = 64u32;
|
2059
|
-
pub const SPINST_SINGLESECTION: u32 = 65536u32;
|
2060
|
-
pub const SPINST_UNREGSVR: u32 = 128u32;
|
2061
|
-
pub const SPINT_ACTIVE: u32 = 1u32;
|
2062
|
-
pub const SPINT_DEFAULT: u32 = 2u32;
|
2063
|
-
pub const SPINT_REMOVED: u32 = 4u32;
|
2064
|
-
pub const SPOST_MAX: u32 = 3u32;
|
2065
|
-
pub const SPOST_NONE: OEM_SOURCE_MEDIA_TYPE = 0u32;
|
2066
|
-
pub const SPOST_PATH: OEM_SOURCE_MEDIA_TYPE = 1u32;
|
2067
|
-
pub const SPOST_URL: OEM_SOURCE_MEDIA_TYPE = 2u32;
|
2068
|
-
pub const SPPSR_ENUM_ADV_DEVICE_PROPERTIES: u32 = 3u32;
|
2069
|
-
pub const SPPSR_ENUM_BASIC_DEVICE_PROPERTIES: u32 = 2u32;
|
2070
|
-
pub const SPPSR_SELECT_DEVICE_RESOURCES: u32 = 1u32;
|
2071
|
-
pub const SPQ_DELAYED_COPY: u32 = 1u32;
|
2072
|
-
pub const SPQ_FLAG_ABORT_IF_UNSIGNED: u32 = 2u32;
|
2073
|
-
pub const SPQ_FLAG_BACKUP_AWARE: u32 = 1u32;
|
2074
|
-
pub const SPQ_FLAG_DO_SHUFFLEMOVE: u32 = 8u32;
|
2075
|
-
pub const SPQ_FLAG_FILES_MODIFIED: u32 = 4u32;
|
2076
|
-
pub const SPQ_FLAG_VALID: u32 = 15u32;
|
2077
|
-
pub const SPQ_SCAN_ACTIVATE_DRP: SETUPSCANFILEQUEUE_FLAGS = 1024u32;
|
2078
|
-
pub const SPQ_SCAN_FILE_COMPARISON: SETUPSCANFILEQUEUE_FLAGS = 512u32;
|
2079
|
-
pub const SPQ_SCAN_FILE_PRESENCE: SETUPSCANFILEQUEUE_FLAGS = 1u32;
|
2080
|
-
pub const SPQ_SCAN_FILE_PRESENCE_WITHOUT_SOURCE: SETUPSCANFILEQUEUE_FLAGS = 256u32;
|
2081
|
-
pub const SPQ_SCAN_FILE_VALIDITY: SETUPSCANFILEQUEUE_FLAGS = 2u32;
|
2082
|
-
pub const SPQ_SCAN_INFORM_USER: SETUPSCANFILEQUEUE_FLAGS = 16u32;
|
2083
|
-
pub const SPQ_SCAN_PRUNE_COPY_QUEUE: SETUPSCANFILEQUEUE_FLAGS = 32u32;
|
2084
|
-
pub const SPQ_SCAN_PRUNE_DELREN: SETUPSCANFILEQUEUE_FLAGS = 128u32;
|
2085
|
-
pub const SPQ_SCAN_USE_CALLBACK: SETUPSCANFILEQUEUE_FLAGS = 4u32;
|
2086
|
-
pub const SPQ_SCAN_USE_CALLBACKEX: SETUPSCANFILEQUEUE_FLAGS = 8u32;
|
2087
|
-
pub const SPQ_SCAN_USE_CALLBACK_SIGNERINFO: SETUPSCANFILEQUEUE_FLAGS = 64u32;
|
2088
|
-
pub const SPRDI_FIND_DUPS: u32 = 1u32;
|
2089
|
-
pub const SPREG_DLLINSTALL: u32 = 4u32;
|
2090
|
-
pub const SPREG_GETPROCADDR: u32 = 2u32;
|
2091
|
-
pub const SPREG_LOADLIBRARY: u32 = 1u32;
|
2092
|
-
pub const SPREG_REGSVR: u32 = 3u32;
|
2093
|
-
pub const SPREG_SUCCESS: u32 = 0u32;
|
2094
|
-
pub const SPREG_TIMEOUT: u32 = 5u32;
|
2095
|
-
pub const SPREG_UNKNOWN: u32 = 4294967295u32;
|
2096
|
-
pub const SPSVCINST_ASSOCSERVICE: SPSVCINST_FLAGS = 2u32;
|
2097
|
-
pub const SPSVCINST_CLOBBER_SECURITY: SPSVCINST_FLAGS = 1024u32;
|
2098
|
-
pub const SPSVCINST_DELETEEVENTLOGENTRY: SPSVCINST_FLAGS = 4u32;
|
2099
|
-
pub const SPSVCINST_NOCLOBBER_DELAYEDAUTOSTART: SPSVCINST_FLAGS = 32768u32;
|
2100
|
-
pub const SPSVCINST_NOCLOBBER_DEPENDENCIES: SPSVCINST_FLAGS = 128u32;
|
2101
|
-
pub const SPSVCINST_NOCLOBBER_DESCRIPTION: SPSVCINST_FLAGS = 256u32;
|
2102
|
-
pub const SPSVCINST_NOCLOBBER_DISPLAYNAME: SPSVCINST_FLAGS = 8u32;
|
2103
|
-
pub const SPSVCINST_NOCLOBBER_ERRORCONTROL: SPSVCINST_FLAGS = 32u32;
|
2104
|
-
pub const SPSVCINST_NOCLOBBER_FAILUREACTIONS: SPSVCINST_FLAGS = 131072u32;
|
2105
|
-
pub const SPSVCINST_NOCLOBBER_LOADORDERGROUP: SPSVCINST_FLAGS = 64u32;
|
2106
|
-
pub const SPSVCINST_NOCLOBBER_REQUIREDPRIVILEGES: SPSVCINST_FLAGS = 4096u32;
|
2107
|
-
pub const SPSVCINST_NOCLOBBER_SERVICESIDTYPE: SPSVCINST_FLAGS = 16384u32;
|
2108
|
-
pub const SPSVCINST_NOCLOBBER_STARTTYPE: SPSVCINST_FLAGS = 16u32;
|
2109
|
-
pub const SPSVCINST_NOCLOBBER_TRIGGERS: SPSVCINST_FLAGS = 8192u32;
|
2110
|
-
pub const SPSVCINST_STARTSERVICE: SPSVCINST_FLAGS = 2048u32;
|
2111
|
-
pub const SPSVCINST_STOPSERVICE: SPSVCINST_FLAGS = 512u32;
|
2112
|
-
pub const SPSVCINST_TAGTOFRONT: SPSVCINST_FLAGS = 1u32;
|
2113
|
-
pub const SPSVCINST_UNIQUE_NAME: SPSVCINST_FLAGS = 65536u32;
|
2114
|
-
pub const SPWPT_SELECTDEVICE: u32 = 1u32;
|
2115
|
-
pub const SPWP_USE_DEVINFO_DATA: u32 = 1u32;
|
2116
|
-
pub const SP_ALTPLATFORM_FLAGS_SUITE_MASK: u32 = 2u32;
|
2117
|
-
pub const SP_ALTPLATFORM_FLAGS_VERSION_RANGE: u32 = 1u32;
|
2118
|
-
pub const SP_BACKUP_BACKUPPASS: u32 = 1u32;
|
2119
|
-
pub const SP_BACKUP_BOOTFILE: u32 = 8u32;
|
2120
|
-
pub const SP_BACKUP_DEMANDPASS: u32 = 2u32;
|
2121
|
-
pub const SP_BACKUP_SPECIAL: u32 = 4u32;
|
2122
|
-
pub const SP_COPY_ALREADYDECOMP: SP_COPY_STYLE = 4194304u32;
|
2123
|
-
pub const SP_COPY_DELETESOURCE: SP_COPY_STYLE = 1u32;
|
2124
|
-
pub const SP_COPY_FORCE_IN_USE: SP_COPY_STYLE = 512u32;
|
2125
|
-
pub const SP_COPY_FORCE_NEWER: SP_COPY_STYLE = 8192u32;
|
2126
|
-
pub const SP_COPY_FORCE_NOOVERWRITE: SP_COPY_STYLE = 4096u32;
|
2127
|
-
pub const SP_COPY_HARDLINK: SP_COPY_STYLE = 268435456u32;
|
2128
|
-
pub const SP_COPY_INBOX_INF: SP_COPY_STYLE = 134217728u32;
|
2129
|
-
pub const SP_COPY_IN_USE_NEEDS_REBOOT: SP_COPY_STYLE = 256u32;
|
2130
|
-
pub const SP_COPY_IN_USE_TRY_RENAME: SP_COPY_STYLE = 67108864u32;
|
2131
|
-
pub const SP_COPY_LANGUAGEAWARE: SP_COPY_STYLE = 32u32;
|
2132
|
-
pub const SP_COPY_NEWER: SP_COPY_STYLE = 4u32;
|
2133
|
-
pub const SP_COPY_NEWER_ONLY: SP_COPY_STYLE = 65536u32;
|
2134
|
-
pub const SP_COPY_NEWER_OR_SAME: SP_COPY_STYLE = 4u32;
|
2135
|
-
pub const SP_COPY_NOBROWSE: SP_COPY_STYLE = 32768u32;
|
2136
|
-
pub const SP_COPY_NODECOMP: SP_COPY_STYLE = 16u32;
|
2137
|
-
pub const SP_COPY_NOOVERWRITE: SP_COPY_STYLE = 8u32;
|
2138
|
-
pub const SP_COPY_NOPRUNE: SP_COPY_STYLE = 1048576u32;
|
2139
|
-
pub const SP_COPY_NOSKIP: SP_COPY_STYLE = 1024u32;
|
2140
|
-
pub const SP_COPY_OEMINF_CATALOG_ONLY: SP_COPY_STYLE = 262144u32;
|
2141
|
-
pub const SP_COPY_OEM_F6_INF: SP_COPY_STYLE = 2097152u32;
|
2142
|
-
pub const SP_COPY_PNPLOCKED: SP_COPY_STYLE = 33554432u32;
|
2143
|
-
pub const SP_COPY_REPLACEONLY: SP_COPY_STYLE = 2u32;
|
2144
|
-
pub const SP_COPY_REPLACE_BOOT_FILE: SP_COPY_STYLE = 524288u32;
|
2145
|
-
pub const SP_COPY_RESERVED: SP_COPY_STYLE = 131072u32;
|
2146
|
-
pub const SP_COPY_SOURCEPATH_ABSOLUTE: SP_COPY_STYLE = 128u32;
|
2147
|
-
pub const SP_COPY_SOURCE_ABSOLUTE: SP_COPY_STYLE = 64u32;
|
2148
|
-
pub const SP_COPY_WARNIFSKIP: SP_COPY_STYLE = 16384u32;
|
2149
|
-
pub const SP_COPY_WINDOWS_SIGNED: SP_COPY_STYLE = 16777216u32;
|
2150
|
-
pub const SP_FLAG_CABINETCONTINUATION: u32 = 2048u32;
|
2151
|
-
pub const SP_MAX_MACHINENAME_LENGTH: u32 = 263u32;
|
2152
|
-
pub const SRCINFO_DESCRIPTION: u32 = 3u32;
|
2153
|
-
pub const SRCINFO_FLAGS: u32 = 4u32;
|
2154
|
-
pub const SRCINFO_PATH: u32 = 1u32;
|
2155
|
-
pub const SRCINFO_TAGFILE: u32 = 2u32;
|
2156
|
-
pub const SRCINFO_TAGFILE2: u32 = 5u32;
|
2157
|
-
pub const SRCLIST_APPEND: u32 = 512u32;
|
2158
|
-
pub const SRCLIST_NOBROWSE: u32 = 2u32;
|
2159
|
-
pub const SRCLIST_NOSTRIPPLATFORM: u32 = 1024u32;
|
2160
|
-
pub const SRCLIST_SUBDIRS: u32 = 256u32;
|
2161
|
-
pub const SRCLIST_SYSIFADMIN: u32 = 64u32;
|
2162
|
-
pub const SRCLIST_SYSTEM: u32 = 16u32;
|
2163
|
-
pub const SRCLIST_TEMPORARY: u32 = 1u32;
|
2164
|
-
pub const SRCLIST_USER: u32 = 32u32;
|
2165
|
-
pub const SRC_FLAGS_CABFILE: u32 = 16u32;
|
2166
|
-
pub const SUOI_FORCEDELETE: u32 = 1u32;
|
2167
|
-
pub const SUOI_INTERNAL1: u32 = 2u32;
|
2168
|
-
pub const SZ_KEY_ADDAUTOLOGGER: windows_sys::core::PCWSTR = windows_sys::core::w!("AddAutoLogger");
|
2169
|
-
pub const SZ_KEY_ADDAUTOLOGGERPROVIDER: windows_sys::core::PCWSTR = windows_sys::core::w!("AddAutoLoggerProvider");
|
2170
|
-
pub const SZ_KEY_ADDCHANNEL: windows_sys::core::PCWSTR = windows_sys::core::w!("AddChannel");
|
2171
|
-
pub const SZ_KEY_ADDEVENTPROVIDER: windows_sys::core::PCWSTR = windows_sys::core::w!("AddEventProvider");
|
2172
|
-
pub const SZ_KEY_ADDFILTER: windows_sys::core::PCWSTR = windows_sys::core::w!("AddFilter");
|
2173
|
-
pub const SZ_KEY_ADDIME: windows_sys::core::PCWSTR = windows_sys::core::w!("AddIme");
|
2174
|
-
pub const SZ_KEY_ADDINTERFACE: windows_sys::core::PCWSTR = windows_sys::core::w!("AddInterface");
|
2175
|
-
pub const SZ_KEY_ADDPOWERSETTING: windows_sys::core::PCWSTR = windows_sys::core::w!("AddPowerSetting");
|
2176
|
-
pub const SZ_KEY_ADDPROP: windows_sys::core::PCWSTR = windows_sys::core::w!("AddProperty");
|
2177
|
-
pub const SZ_KEY_ADDREG: windows_sys::core::PCWSTR = windows_sys::core::w!("AddReg");
|
2178
|
-
pub const SZ_KEY_ADDREGNOCLOBBER: windows_sys::core::PCWSTR = windows_sys::core::w!("AddRegNoClobber");
|
2179
|
-
pub const SZ_KEY_ADDSERVICE: windows_sys::core::PCWSTR = windows_sys::core::w!("AddService");
|
2180
|
-
pub const SZ_KEY_ADDTRIGGER: windows_sys::core::PCWSTR = windows_sys::core::w!("AddTrigger");
|
2181
|
-
pub const SZ_KEY_BITREG: windows_sys::core::PCWSTR = windows_sys::core::w!("BitReg");
|
2182
|
-
pub const SZ_KEY_CLEANONLY: windows_sys::core::PCWSTR = windows_sys::core::w!("CleanOnly");
|
2183
|
-
pub const SZ_KEY_COPYFILES: windows_sys::core::PCWSTR = windows_sys::core::w!("CopyFiles");
|
2184
|
-
pub const SZ_KEY_COPYINF: windows_sys::core::PCWSTR = windows_sys::core::w!("CopyINF");
|
2185
|
-
pub const SZ_KEY_DEFAULTOPTION: windows_sys::core::PCWSTR = windows_sys::core::w!("DefaultOption");
|
2186
|
-
pub const SZ_KEY_DEFDESTDIR: windows_sys::core::PCWSTR = windows_sys::core::w!("DefaultDestDir");
|
2187
|
-
pub const SZ_KEY_DELFILES: windows_sys::core::PCWSTR = windows_sys::core::w!("DelFiles");
|
2188
|
-
pub const SZ_KEY_DELIME: windows_sys::core::PCWSTR = windows_sys::core::w!("DelIme");
|
2189
|
-
pub const SZ_KEY_DELPROP: windows_sys::core::PCWSTR = windows_sys::core::w!("DelProperty");
|
2190
|
-
pub const SZ_KEY_DELREG: windows_sys::core::PCWSTR = windows_sys::core::w!("DelReg");
|
2191
|
-
pub const SZ_KEY_DELSERVICE: windows_sys::core::PCWSTR = windows_sys::core::w!("DelService");
|
2192
|
-
pub const SZ_KEY_DESTDIRS: windows_sys::core::PCWSTR = windows_sys::core::w!("DestinationDirs");
|
2193
|
-
pub const SZ_KEY_EXCLUDEID: windows_sys::core::PCWSTR = windows_sys::core::w!("ExcludeId");
|
2194
|
-
pub const SZ_KEY_FAILUREACTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("FailureActions");
|
2195
|
-
pub const SZ_KEY_FEATURESCORE: windows_sys::core::PCWSTR = windows_sys::core::w!("FeatureScore");
|
2196
|
-
pub const SZ_KEY_FILTERLEVEL: windows_sys::core::PCWSTR = windows_sys::core::w!("FilterLevel");
|
2197
|
-
pub const SZ_KEY_FILTERPOSITION: windows_sys::core::PCWSTR = windows_sys::core::w!("FilterPosition");
|
2198
|
-
pub const SZ_KEY_HARDWARE: windows_sys::core::PCWSTR = windows_sys::core::w!("Hardware");
|
2199
|
-
pub const SZ_KEY_IMPORTCHANNEL: windows_sys::core::PCWSTR = windows_sys::core::w!("ImportChannel");
|
2200
|
-
pub const SZ_KEY_INI2REG: windows_sys::core::PCWSTR = windows_sys::core::w!("Ini2Reg");
|
2201
|
-
pub const SZ_KEY_LAYOUT_FILE: windows_sys::core::PCWSTR = windows_sys::core::w!("LayoutFile");
|
2202
|
-
pub const SZ_KEY_LDIDOEM: windows_sys::core::PCWSTR = windows_sys::core::w!("LdidOEM");
|
2203
|
-
pub const SZ_KEY_LFN_SECTION: windows_sys::core::PCWSTR = windows_sys::core::w!("VarLDID.LFN");
|
2204
|
-
pub const SZ_KEY_LISTOPTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("ListOptions");
|
2205
|
-
pub const SZ_KEY_LOGCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("LogConfig");
|
2206
|
-
pub const SZ_KEY_MODULES: windows_sys::core::PCWSTR = windows_sys::core::w!("Modules");
|
2207
|
-
pub const SZ_KEY_OPTIONDESC: windows_sys::core::PCWSTR = windows_sys::core::w!("OptionDesc");
|
2208
|
-
pub const SZ_KEY_PHASE1: windows_sys::core::PCWSTR = windows_sys::core::w!("Phase1");
|
2209
|
-
pub const SZ_KEY_PROFILEITEMS: windows_sys::core::PCWSTR = windows_sys::core::w!("ProfileItems");
|
2210
|
-
pub const SZ_KEY_REGSVR: windows_sys::core::PCWSTR = windows_sys::core::w!("RegisterDlls");
|
2211
|
-
pub const SZ_KEY_RENFILES: windows_sys::core::PCWSTR = windows_sys::core::w!("RenFiles");
|
2212
|
-
pub const SZ_KEY_SFN_SECTION: windows_sys::core::PCWSTR = windows_sys::core::w!("VarLDID.SFN");
|
2213
|
-
pub const SZ_KEY_SRCDISKFILES: windows_sys::core::PCWSTR = windows_sys::core::w!("SourceDisksFiles");
|
2214
|
-
pub const SZ_KEY_SRCDISKNAMES: windows_sys::core::PCWSTR = windows_sys::core::w!("SourceDisksNames");
|
2215
|
-
pub const SZ_KEY_STRINGS: windows_sys::core::PCWSTR = windows_sys::core::w!("Strings");
|
2216
|
-
pub const SZ_KEY_UNREGSVR: windows_sys::core::PCWSTR = windows_sys::core::w!("UnregisterDlls");
|
2217
|
-
pub const SZ_KEY_UPDATEAUTOLOGGER: windows_sys::core::PCWSTR = windows_sys::core::w!("UpdateAutoLogger");
|
2218
|
-
pub const SZ_KEY_UPDATEINIFIELDS: windows_sys::core::PCWSTR = windows_sys::core::w!("UpdateIniFields");
|
2219
|
-
pub const SZ_KEY_UPDATEINIS: windows_sys::core::PCWSTR = windows_sys::core::w!("UpdateInis");
|
2220
|
-
pub const SZ_KEY_UPGRADEONLY: windows_sys::core::PCWSTR = windows_sys::core::w!("UpgradeOnly");
|
2221
|
-
pub const SetupFileLogChecksum: SetupFileLogInfo = 1i32;
|
2222
|
-
pub const SetupFileLogDiskDescription: SetupFileLogInfo = 3i32;
|
2223
|
-
pub const SetupFileLogDiskTagfile: SetupFileLogInfo = 2i32;
|
2224
|
-
pub const SetupFileLogMax: SetupFileLogInfo = 5i32;
|
2225
|
-
pub const SetupFileLogOtherInfo: SetupFileLogInfo = 4i32;
|
2226
|
-
pub const SetupFileLogSourceFilename: SetupFileLogInfo = 0i32;
|
2227
|
-
pub const fDD_BYTE: DD_FLAGS = 0u32;
|
2228
|
-
pub const fDD_BYTE_AND_WORD: DD_FLAGS = 3u32;
|
2229
|
-
pub const fDD_BusMaster: DD_FLAGS = 4u32;
|
2230
|
-
pub const fDD_DWORD: DD_FLAGS = 2u32;
|
2231
|
-
pub const fDD_NoBusMaster: DD_FLAGS = 0u32;
|
2232
|
-
pub const fDD_TypeA: DD_FLAGS = 8u32;
|
2233
|
-
pub const fDD_TypeB: DD_FLAGS = 16u32;
|
2234
|
-
pub const fDD_TypeF: DD_FLAGS = 24u32;
|
2235
|
-
pub const fDD_TypeStandard: DD_FLAGS = 0u32;
|
2236
|
-
pub const fDD_WORD: DD_FLAGS = 1u32;
|
2237
|
-
pub const fIOD_10_BIT_DECODE: IOD_DESFLAGS = 4u32;
|
2238
|
-
pub const fIOD_12_BIT_DECODE: IOD_DESFLAGS = 8u32;
|
2239
|
-
pub const fIOD_16_BIT_DECODE: IOD_DESFLAGS = 16u32;
|
2240
|
-
pub const fIOD_DECODE: IOD_DESFLAGS = 252u32;
|
2241
|
-
pub const fIOD_IO: IOD_DESFLAGS = 1u32;
|
2242
|
-
pub const fIOD_Memory: IOD_DESFLAGS = 0u32;
|
2243
|
-
pub const fIOD_PASSIVE_DECODE: IOD_DESFLAGS = 64u32;
|
2244
|
-
pub const fIOD_PORT_BAR: IOD_DESFLAGS = 256u32;
|
2245
|
-
pub const fIOD_POSITIVE_DECODE: IOD_DESFLAGS = 32u32;
|
2246
|
-
pub const fIOD_PortType: IOD_DESFLAGS = 1u32;
|
2247
|
-
pub const fIOD_WINDOW_DECODE: IOD_DESFLAGS = 128u32;
|
2248
|
-
pub const fIRQD_Edge: IRQD_FLAGS = 2u32;
|
2249
|
-
pub const fIRQD_Exclusive: IRQD_FLAGS = 0u32;
|
2250
|
-
pub const fIRQD_Level: IRQD_FLAGS = 0u32;
|
2251
|
-
pub const fIRQD_Level_Bit: IRQD_FLAGS = 1u32;
|
2252
|
-
pub const fIRQD_Share: IRQD_FLAGS = 1u32;
|
2253
|
-
pub const fIRQD_Share_Bit: IRQD_FLAGS = 0u32;
|
2254
|
-
pub const fMD_24: MD_FLAGS = 0u32;
|
2255
|
-
pub const fMD_32: MD_FLAGS = 2u32;
|
2256
|
-
pub const fMD_32_24: MD_FLAGS = 2u32;
|
2257
|
-
pub const fMD_Cacheable: MD_FLAGS = 32u32;
|
2258
|
-
pub const fMD_CombinedWrite: MD_FLAGS = 16u32;
|
2259
|
-
pub const fMD_CombinedWriteAllowed: MD_FLAGS = 16u32;
|
2260
|
-
pub const fMD_CombinedWriteDisallowed: MD_FLAGS = 0u32;
|
2261
|
-
pub const fMD_MEMORY_BAR: MD_FLAGS = 128u32;
|
2262
|
-
pub const fMD_MemoryType: MD_FLAGS = 1u32;
|
2263
|
-
pub const fMD_NonCacheable: MD_FLAGS = 0u32;
|
2264
|
-
pub const fMD_Pref: MD_FLAGS = 4u32;
|
2265
|
-
pub const fMD_PrefetchAllowed: MD_FLAGS = 4u32;
|
2266
|
-
pub const fMD_PrefetchDisallowed: MD_FLAGS = 0u32;
|
2267
|
-
pub const fMD_Prefetchable: MD_FLAGS = 4u32;
|
2268
|
-
pub const fMD_RAM: MD_FLAGS = 1u32;
|
2269
|
-
pub const fMD_ROM: MD_FLAGS = 0u32;
|
2270
|
-
pub const fMD_ReadAllowed: MD_FLAGS = 0u32;
|
2271
|
-
pub const fMD_ReadDisallowed: MD_FLAGS = 8u32;
|
2272
|
-
pub const fMD_Readable: MD_FLAGS = 8u32;
|
2273
|
-
pub const fMD_WINDOW_DECODE: MD_FLAGS = 64u32;
|
2274
|
-
pub const fPCD_ATTRIBUTES_PER_WINDOW: PCD_FLAGS = 32768u32;
|
2275
|
-
pub const fPCD_IO1_16: PCD_FLAGS = 65536u32;
|
2276
|
-
pub const fPCD_IO1_SRC_16: PCD_FLAGS = 262144u32;
|
2277
|
-
pub const fPCD_IO1_WS_16: PCD_FLAGS = 524288u32;
|
2278
|
-
pub const fPCD_IO1_ZW_8: PCD_FLAGS = 131072u32;
|
2279
|
-
pub const fPCD_IO2_16: PCD_FLAGS = 1048576u32;
|
2280
|
-
pub const fPCD_IO2_SRC_16: PCD_FLAGS = 4194304u32;
|
2281
|
-
pub const fPCD_IO2_WS_16: PCD_FLAGS = 8388608u32;
|
2282
|
-
pub const fPCD_IO2_ZW_8: PCD_FLAGS = 2097152u32;
|
2283
|
-
pub const fPCD_IO_16: PCD_FLAGS = 1u32;
|
2284
|
-
pub const fPCD_IO_8: PCD_FLAGS = 0u32;
|
2285
|
-
pub const fPCD_IO_SRC_16: PCD_FLAGS = 32u32;
|
2286
|
-
pub const fPCD_IO_WS_16: PCD_FLAGS = 64u32;
|
2287
|
-
pub const fPCD_IO_ZW_8: PCD_FLAGS = 16u32;
|
2288
|
-
pub const fPCD_MEM1_16: PCD_FLAGS = 67108864u32;
|
2289
|
-
pub const fPCD_MEM1_A: PCD_FLAGS = 4u32;
|
2290
|
-
pub const fPCD_MEM1_WS_ONE: PCD_FLAGS = 16777216u32;
|
2291
|
-
pub const fPCD_MEM1_WS_THREE: PCD_FLAGS = 50331648u32;
|
2292
|
-
pub const fPCD_MEM1_WS_TWO: PCD_FLAGS = 33554432u32;
|
2293
|
-
pub const fPCD_MEM2_16: PCD_FLAGS = 1073741824u32;
|
2294
|
-
pub const fPCD_MEM2_A: PCD_FLAGS = 8u32;
|
2295
|
-
pub const fPCD_MEM2_WS_ONE: PCD_FLAGS = 268435456u32;
|
2296
|
-
pub const fPCD_MEM2_WS_THREE: PCD_FLAGS = 805306368u32;
|
2297
|
-
pub const fPCD_MEM2_WS_TWO: PCD_FLAGS = 536870912u32;
|
2298
|
-
pub const fPCD_MEM_16: PCD_FLAGS = 2u32;
|
2299
|
-
pub const fPCD_MEM_8: PCD_FLAGS = 0u32;
|
2300
|
-
pub const fPCD_MEM_A: PCD_FLAGS = 4u32;
|
2301
|
-
pub const fPCD_MEM_WS_ONE: PCD_FLAGS = 256u32;
|
2302
|
-
pub const fPCD_MEM_WS_THREE: PCD_FLAGS = 768u32;
|
2303
|
-
pub const fPCD_MEM_WS_TWO: PCD_FLAGS = 512u32;
|
2304
|
-
pub const fPMF_AUDIO_ENABLE: PMF_FLAGS = 8u32;
|
2305
|
-
pub const mDD_BusMaster: DD_FLAGS = 4u32;
|
2306
|
-
pub const mDD_Type: DD_FLAGS = 24u32;
|
2307
|
-
pub const mDD_Width: DD_FLAGS = 3u32;
|
2308
|
-
pub const mIRQD_Edge_Level: IRQD_FLAGS = 2u32;
|
2309
|
-
pub const mIRQD_Share: IRQD_FLAGS = 1u32;
|
2310
|
-
pub const mMD_32_24: MD_FLAGS = 2u32;
|
2311
|
-
pub const mMD_Cacheable: MD_FLAGS = 32u32;
|
2312
|
-
pub const mMD_CombinedWrite: MD_FLAGS = 16u32;
|
2313
|
-
pub const mMD_MemoryType: MD_FLAGS = 1u32;
|
2314
|
-
pub const mMD_Prefetchable: MD_FLAGS = 4u32;
|
2315
|
-
pub const mMD_Readable: MD_FLAGS = 8u32;
|
2316
|
-
pub const mPCD_IO_8_16: PCD_FLAGS = 1u32;
|
2317
|
-
pub const mPCD_MEM1_WS: PCD_FLAGS = 50331648u32;
|
2318
|
-
pub const mPCD_MEM2_WS: PCD_FLAGS = 805306368u32;
|
2319
|
-
pub const mPCD_MEM_8_16: PCD_FLAGS = 2u32;
|
2320
|
-
pub const mPCD_MEM_A_C: PCD_FLAGS = 12u32;
|
2321
|
-
pub const mPCD_MEM_WS: PCD_FLAGS = 768u32;
|
2322
|
-
pub const mPMF_AUDIO_ENABLE: u32 = 8u32;
|
2323
|
-
pub type CM_CDFLAGS = u32;
|
2324
|
-
pub type CM_CDMASK = u32;
|
2325
|
-
pub type CM_DEVCAP = u32;
|
2326
|
-
pub type CM_DEVNODE_STATUS_FLAGS = u32;
|
2327
|
-
pub type CM_ENUMERATE_FLAGS = u32;
|
2328
|
-
pub type CM_GET_DEVICE_INTERFACE_LIST_FLAGS = u32;
|
2329
|
-
pub type CM_INSTALL_STATE = u32;
|
2330
|
-
pub type CM_LOCATE_DEVNODE_FLAGS = u32;
|
2331
|
-
pub type CM_LOG_CONF = u32;
|
2332
|
-
pub type CM_NOTIFY_ACTION = i32;
|
2333
|
-
pub type CM_NOTIFY_FILTER_TYPE = i32;
|
2334
|
-
pub type CM_PROB = u32;
|
2335
|
-
pub type CM_REENUMERATE_FLAGS = u32;
|
2336
|
-
pub type CM_REMOVAL_POLICY = u32;
|
2337
|
-
pub type CM_RESTYPE = u32;
|
2338
|
-
pub type CONFIGRET = u32;
|
2339
|
-
pub type DD_FLAGS = u32;
|
2340
|
-
pub type DIINSTALLDEVICE_FLAGS = u32;
|
2341
|
-
pub type DIINSTALLDRIVER_FLAGS = u32;
|
2342
|
-
pub type DIROLLBACKDRIVER_FLAGS = u32;
|
2343
|
-
pub type DIUNINSTALLDRIVER_FLAGS = u32;
|
2344
|
-
pub type DI_FUNCTION = u32;
|
2345
|
-
pub type FILE_COMPRESSION_TYPE = u32;
|
2346
|
-
pub type INF_STYLE = u32;
|
2347
|
-
pub type IOD_DESFLAGS = u32;
|
2348
|
-
pub type IRQD_FLAGS = u32;
|
2349
|
-
pub type MD_FLAGS = u32;
|
2350
|
-
pub type OEM_SOURCE_MEDIA_TYPE = u32;
|
2351
|
-
pub type PCD_FLAGS = u32;
|
2352
|
-
pub type PMF_FLAGS = u32;
|
2353
|
-
pub type PNP_VETO_TYPE = i32;
|
2354
|
-
pub type SETUPSCANFILEQUEUE_FLAGS = u32;
|
2355
|
-
pub type SETUP_DI_DEVICE_CONFIGURATION_FLAGS = u32;
|
2356
|
-
pub type SETUP_DI_DEVICE_CREATION_FLAGS = u32;
|
2357
|
-
pub type SETUP_DI_DEVICE_INSTALL_FLAGS = u32;
|
2358
|
-
pub type SETUP_DI_DEVICE_INSTALL_FLAGS_EX = u32;
|
2359
|
-
pub type SETUP_DI_DRIVER_INSTALL_FLAGS = u32;
|
2360
|
-
pub type SETUP_DI_DRIVER_TYPE = u32;
|
2361
|
-
pub type SETUP_DI_GET_CLASS_DEVS_FLAGS = u32;
|
2362
|
-
pub type SETUP_DI_PROPERTY_CHANGE_SCOPE = u32;
|
2363
|
-
pub type SETUP_DI_REGISTRY_PROPERTY = u32;
|
2364
|
-
pub type SETUP_DI_REMOVE_DEVICE_SCOPE = u32;
|
2365
|
-
pub type SETUP_DI_STATE_CHANGE = u32;
|
2366
|
-
pub type SETUP_FILE_OPERATION = u32;
|
2367
|
-
pub type SPSVCINST_FLAGS = u32;
|
2368
|
-
pub type SP_COPY_STYLE = u32;
|
2369
|
-
pub type SetupFileLogInfo = i32;
|
2370
|
-
pub type UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS = u32;
|
2371
|
-
#[repr(C, packed(1))]
|
2372
|
-
#[derive(Clone, Copy)]
|
2373
|
-
pub struct BUSNUMBER_DES {
|
2374
|
-
pub BUSD_Count: u32,
|
2375
|
-
pub BUSD_Type: u32,
|
2376
|
-
pub BUSD_Flags: u32,
|
2377
|
-
pub BUSD_Alloc_Base: u32,
|
2378
|
-
pub BUSD_Alloc_End: u32,
|
2379
|
-
}
|
2380
|
-
#[repr(C, packed(1))]
|
2381
|
-
#[derive(Clone, Copy)]
|
2382
|
-
pub struct BUSNUMBER_RANGE {
|
2383
|
-
pub BUSR_Min: u32,
|
2384
|
-
pub BUSR_Max: u32,
|
2385
|
-
pub BUSR_nBusNumbers: u32,
|
2386
|
-
pub BUSR_Flags: u32,
|
2387
|
-
}
|
2388
|
-
#[repr(C, packed(1))]
|
2389
|
-
#[derive(Clone, Copy)]
|
2390
|
-
pub struct BUSNUMBER_RESOURCE {
|
2391
|
-
pub BusNumber_Header: BUSNUMBER_DES,
|
2392
|
-
pub BusNumber_Data: [BUSNUMBER_RANGE; 1],
|
2393
|
-
}
|
2394
|
-
#[repr(C)]
|
2395
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2396
|
-
#[derive(Clone, Copy)]
|
2397
|
-
pub struct CABINET_INFO_A {
|
2398
|
-
pub CabinetPath: windows_sys::core::PCSTR,
|
2399
|
-
pub CabinetFile: windows_sys::core::PCSTR,
|
2400
|
-
pub DiskName: windows_sys::core::PCSTR,
|
2401
|
-
pub SetId: u16,
|
2402
|
-
pub CabinetNumber: u16,
|
2403
|
-
}
|
2404
|
-
#[repr(C, packed(1))]
|
2405
|
-
#[cfg(target_arch = "x86")]
|
2406
|
-
#[derive(Clone, Copy)]
|
2407
|
-
pub struct CABINET_INFO_A {
|
2408
|
-
pub CabinetPath: windows_sys::core::PCSTR,
|
2409
|
-
pub CabinetFile: windows_sys::core::PCSTR,
|
2410
|
-
pub DiskName: windows_sys::core::PCSTR,
|
2411
|
-
pub SetId: u16,
|
2412
|
-
pub CabinetNumber: u16,
|
2413
|
-
}
|
2414
|
-
#[repr(C)]
|
2415
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2416
|
-
#[derive(Clone, Copy)]
|
2417
|
-
pub struct CABINET_INFO_W {
|
2418
|
-
pub CabinetPath: windows_sys::core::PCWSTR,
|
2419
|
-
pub CabinetFile: windows_sys::core::PCWSTR,
|
2420
|
-
pub DiskName: windows_sys::core::PCWSTR,
|
2421
|
-
pub SetId: u16,
|
2422
|
-
pub CabinetNumber: u16,
|
2423
|
-
}
|
2424
|
-
#[repr(C, packed(1))]
|
2425
|
-
#[cfg(target_arch = "x86")]
|
2426
|
-
#[derive(Clone, Copy)]
|
2427
|
-
pub struct CABINET_INFO_W {
|
2428
|
-
pub CabinetPath: windows_sys::core::PCWSTR,
|
2429
|
-
pub CabinetFile: windows_sys::core::PCWSTR,
|
2430
|
-
pub DiskName: windows_sys::core::PCWSTR,
|
2431
|
-
pub SetId: u16,
|
2432
|
-
pub CabinetNumber: u16,
|
2433
|
-
}
|
2434
|
-
#[repr(C)]
|
2435
|
-
#[derive(Clone, Copy)]
|
2436
|
-
pub struct CM_NOTIFY_EVENT_DATA {
|
2437
|
-
pub FilterType: CM_NOTIFY_FILTER_TYPE,
|
2438
|
-
pub Reserved: u32,
|
2439
|
-
pub u: CM_NOTIFY_EVENT_DATA_0,
|
2440
|
-
}
|
2441
|
-
#[repr(C)]
|
2442
|
-
#[derive(Clone, Copy)]
|
2443
|
-
pub union CM_NOTIFY_EVENT_DATA_0 {
|
2444
|
-
pub DeviceInterface: CM_NOTIFY_EVENT_DATA_0_2,
|
2445
|
-
pub DeviceHandle: CM_NOTIFY_EVENT_DATA_0_0,
|
2446
|
-
pub DeviceInstance: CM_NOTIFY_EVENT_DATA_0_1,
|
2447
|
-
}
|
2448
|
-
#[repr(C)]
|
2449
|
-
#[derive(Clone, Copy)]
|
2450
|
-
pub struct CM_NOTIFY_EVENT_DATA_0_0 {
|
2451
|
-
pub EventGuid: windows_sys::core::GUID,
|
2452
|
-
pub NameOffset: i32,
|
2453
|
-
pub DataSize: u32,
|
2454
|
-
pub Data: [u8; 1],
|
2455
|
-
}
|
2456
|
-
#[repr(C)]
|
2457
|
-
#[derive(Clone, Copy)]
|
2458
|
-
pub struct CM_NOTIFY_EVENT_DATA_0_1 {
|
2459
|
-
pub InstanceId: [u16; 1],
|
2460
|
-
}
|
2461
|
-
#[repr(C)]
|
2462
|
-
#[derive(Clone, Copy)]
|
2463
|
-
pub struct CM_NOTIFY_EVENT_DATA_0_2 {
|
2464
|
-
pub ClassGuid: windows_sys::core::GUID,
|
2465
|
-
pub SymbolicLink: [u16; 1],
|
2466
|
-
}
|
2467
|
-
#[repr(C)]
|
2468
|
-
#[derive(Clone, Copy)]
|
2469
|
-
pub struct CM_NOTIFY_FILTER {
|
2470
|
-
pub cbSize: u32,
|
2471
|
-
pub Flags: u32,
|
2472
|
-
pub FilterType: CM_NOTIFY_FILTER_TYPE,
|
2473
|
-
pub Reserved: u32,
|
2474
|
-
pub u: CM_NOTIFY_FILTER_0,
|
2475
|
-
}
|
2476
|
-
#[repr(C)]
|
2477
|
-
#[derive(Clone, Copy)]
|
2478
|
-
pub union CM_NOTIFY_FILTER_0 {
|
2479
|
-
pub DeviceInterface: CM_NOTIFY_FILTER_0_2,
|
2480
|
-
pub DeviceHandle: CM_NOTIFY_FILTER_0_0,
|
2481
|
-
pub DeviceInstance: CM_NOTIFY_FILTER_0_1,
|
2482
|
-
}
|
2483
|
-
#[repr(C)]
|
2484
|
-
#[derive(Clone, Copy)]
|
2485
|
-
pub struct CM_NOTIFY_FILTER_0_0 {
|
2486
|
-
pub hTarget: super::super::Foundation::HANDLE,
|
2487
|
-
}
|
2488
|
-
#[repr(C)]
|
2489
|
-
#[derive(Clone, Copy)]
|
2490
|
-
pub struct CM_NOTIFY_FILTER_0_1 {
|
2491
|
-
pub InstanceId: [u16; 200],
|
2492
|
-
}
|
2493
|
-
#[repr(C)]
|
2494
|
-
#[derive(Clone, Copy)]
|
2495
|
-
pub struct CM_NOTIFY_FILTER_0_2 {
|
2496
|
-
pub ClassGuid: windows_sys::core::GUID,
|
2497
|
-
}
|
2498
|
-
#[repr(C)]
|
2499
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2500
|
-
#[derive(Clone, Copy)]
|
2501
|
-
pub struct COINSTALLER_CONTEXT_DATA {
|
2502
|
-
pub PostProcessing: super::super::Foundation::BOOL,
|
2503
|
-
pub InstallResult: u32,
|
2504
|
-
pub PrivateData: *mut core::ffi::c_void,
|
2505
|
-
}
|
2506
|
-
#[repr(C, packed(1))]
|
2507
|
-
#[cfg(target_arch = "x86")]
|
2508
|
-
#[derive(Clone, Copy)]
|
2509
|
-
pub struct COINSTALLER_CONTEXT_DATA {
|
2510
|
-
pub PostProcessing: super::super::Foundation::BOOL,
|
2511
|
-
pub InstallResult: u32,
|
2512
|
-
pub PrivateData: *mut core::ffi::c_void,
|
2513
|
-
}
|
2514
|
-
#[repr(C)]
|
2515
|
-
#[derive(Clone, Copy)]
|
2516
|
-
pub struct CONFLICT_DETAILS_A {
|
2517
|
-
pub CD_ulSize: u32,
|
2518
|
-
pub CD_ulMask: CM_CDMASK,
|
2519
|
-
pub CD_dnDevInst: u32,
|
2520
|
-
pub CD_rdResDes: usize,
|
2521
|
-
pub CD_ulFlags: CM_CDFLAGS,
|
2522
|
-
pub CD_szDescription: [i8; 260],
|
2523
|
-
}
|
2524
|
-
#[repr(C)]
|
2525
|
-
#[derive(Clone, Copy)]
|
2526
|
-
pub struct CONFLICT_DETAILS_W {
|
2527
|
-
pub CD_ulSize: u32,
|
2528
|
-
pub CD_ulMask: CM_CDMASK,
|
2529
|
-
pub CD_dnDevInst: u32,
|
2530
|
-
pub CD_rdResDes: usize,
|
2531
|
-
pub CD_ulFlags: CM_CDFLAGS,
|
2532
|
-
pub CD_szDescription: [u16; 260],
|
2533
|
-
}
|
2534
|
-
#[repr(C, packed(1))]
|
2535
|
-
#[derive(Clone, Copy)]
|
2536
|
-
pub struct CONNECTION_DES {
|
2537
|
-
pub COND_Type: u32,
|
2538
|
-
pub COND_Flags: u32,
|
2539
|
-
pub COND_Class: u8,
|
2540
|
-
pub COND_ClassType: u8,
|
2541
|
-
pub COND_Reserved1: u8,
|
2542
|
-
pub COND_Reserved2: u8,
|
2543
|
-
pub COND_Id: i64,
|
2544
|
-
}
|
2545
|
-
#[repr(C, packed(1))]
|
2546
|
-
#[derive(Clone, Copy)]
|
2547
|
-
pub struct CONNECTION_RESOURCE {
|
2548
|
-
pub Connection_Header: CONNECTION_DES,
|
2549
|
-
}
|
2550
|
-
#[repr(C, packed(1))]
|
2551
|
-
#[derive(Clone, Copy)]
|
2552
|
-
pub struct CS_DES {
|
2553
|
-
pub CSD_SignatureLength: u32,
|
2554
|
-
pub CSD_LegacyDataOffset: u32,
|
2555
|
-
pub CSD_LegacyDataSize: u32,
|
2556
|
-
pub CSD_Flags: u32,
|
2557
|
-
pub CSD_ClassGuid: windows_sys::core::GUID,
|
2558
|
-
pub CSD_Signature: [u8; 1],
|
2559
|
-
}
|
2560
|
-
#[repr(C, packed(1))]
|
2561
|
-
#[derive(Clone, Copy)]
|
2562
|
-
pub struct CS_RESOURCE {
|
2563
|
-
pub CS_Header: CS_DES,
|
2564
|
-
}
|
2565
|
-
#[repr(C, packed(1))]
|
2566
|
-
#[derive(Clone, Copy)]
|
2567
|
-
pub struct DEVPRIVATE_DES {
|
2568
|
-
pub PD_Count: u32,
|
2569
|
-
pub PD_Type: u32,
|
2570
|
-
pub PD_Data1: u32,
|
2571
|
-
pub PD_Data2: u32,
|
2572
|
-
pub PD_Data3: u32,
|
2573
|
-
pub PD_Flags: u32,
|
2574
|
-
}
|
2575
|
-
#[repr(C, packed(1))]
|
2576
|
-
#[derive(Clone, Copy)]
|
2577
|
-
pub struct DEVPRIVATE_RANGE {
|
2578
|
-
pub PR_Data1: u32,
|
2579
|
-
pub PR_Data2: u32,
|
2580
|
-
pub PR_Data3: u32,
|
2581
|
-
}
|
2582
|
-
#[repr(C, packed(1))]
|
2583
|
-
#[derive(Clone, Copy)]
|
2584
|
-
pub struct DEVPRIVATE_RESOURCE {
|
2585
|
-
pub PRV_Header: DEVPRIVATE_DES,
|
2586
|
-
pub PRV_Data: [DEVPRIVATE_RANGE; 1],
|
2587
|
-
}
|
2588
|
-
#[repr(C, packed(1))]
|
2589
|
-
#[derive(Clone, Copy)]
|
2590
|
-
pub struct DMA_DES {
|
2591
|
-
pub DD_Count: u32,
|
2592
|
-
pub DD_Type: u32,
|
2593
|
-
pub DD_Flags: DD_FLAGS,
|
2594
|
-
pub DD_Alloc_Chan: u32,
|
2595
|
-
}
|
2596
|
-
#[repr(C, packed(1))]
|
2597
|
-
#[derive(Clone, Copy)]
|
2598
|
-
pub struct DMA_RANGE {
|
2599
|
-
pub DR_Min: u32,
|
2600
|
-
pub DR_Max: u32,
|
2601
|
-
pub DR_Flags: DD_FLAGS,
|
2602
|
-
}
|
2603
|
-
#[repr(C, packed(1))]
|
2604
|
-
#[derive(Clone, Copy)]
|
2605
|
-
pub struct DMA_RESOURCE {
|
2606
|
-
pub DMA_Header: DMA_DES,
|
2607
|
-
pub DMA_Data: [DMA_RANGE; 1],
|
2608
|
-
}
|
2609
|
-
#[repr(C)]
|
2610
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2611
|
-
#[derive(Clone, Copy)]
|
2612
|
-
pub struct FILEPATHS_A {
|
2613
|
-
pub Target: windows_sys::core::PCSTR,
|
2614
|
-
pub Source: windows_sys::core::PCSTR,
|
2615
|
-
pub Win32Error: u32,
|
2616
|
-
pub Flags: u32,
|
2617
|
-
}
|
2618
|
-
#[repr(C, packed(1))]
|
2619
|
-
#[cfg(target_arch = "x86")]
|
2620
|
-
#[derive(Clone, Copy)]
|
2621
|
-
pub struct FILEPATHS_A {
|
2622
|
-
pub Target: windows_sys::core::PCSTR,
|
2623
|
-
pub Source: windows_sys::core::PCSTR,
|
2624
|
-
pub Win32Error: u32,
|
2625
|
-
pub Flags: u32,
|
2626
|
-
}
|
2627
|
-
#[repr(C)]
|
2628
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2629
|
-
#[derive(Clone, Copy)]
|
2630
|
-
pub struct FILEPATHS_SIGNERINFO_A {
|
2631
|
-
pub Target: windows_sys::core::PCSTR,
|
2632
|
-
pub Source: windows_sys::core::PCSTR,
|
2633
|
-
pub Win32Error: u32,
|
2634
|
-
pub Flags: u32,
|
2635
|
-
pub DigitalSigner: windows_sys::core::PCSTR,
|
2636
|
-
pub Version: windows_sys::core::PCSTR,
|
2637
|
-
pub CatalogFile: windows_sys::core::PCSTR,
|
2638
|
-
}
|
2639
|
-
#[repr(C, packed(1))]
|
2640
|
-
#[cfg(target_arch = "x86")]
|
2641
|
-
#[derive(Clone, Copy)]
|
2642
|
-
pub struct FILEPATHS_SIGNERINFO_A {
|
2643
|
-
pub Target: windows_sys::core::PCSTR,
|
2644
|
-
pub Source: windows_sys::core::PCSTR,
|
2645
|
-
pub Win32Error: u32,
|
2646
|
-
pub Flags: u32,
|
2647
|
-
pub DigitalSigner: windows_sys::core::PCSTR,
|
2648
|
-
pub Version: windows_sys::core::PCSTR,
|
2649
|
-
pub CatalogFile: windows_sys::core::PCSTR,
|
2650
|
-
}
|
2651
|
-
#[repr(C)]
|
2652
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2653
|
-
#[derive(Clone, Copy)]
|
2654
|
-
pub struct FILEPATHS_SIGNERINFO_W {
|
2655
|
-
pub Target: windows_sys::core::PCWSTR,
|
2656
|
-
pub Source: windows_sys::core::PCWSTR,
|
2657
|
-
pub Win32Error: u32,
|
2658
|
-
pub Flags: u32,
|
2659
|
-
pub DigitalSigner: windows_sys::core::PCWSTR,
|
2660
|
-
pub Version: windows_sys::core::PCWSTR,
|
2661
|
-
pub CatalogFile: windows_sys::core::PCWSTR,
|
2662
|
-
}
|
2663
|
-
#[repr(C, packed(1))]
|
2664
|
-
#[cfg(target_arch = "x86")]
|
2665
|
-
#[derive(Clone, Copy)]
|
2666
|
-
pub struct FILEPATHS_SIGNERINFO_W {
|
2667
|
-
pub Target: windows_sys::core::PCWSTR,
|
2668
|
-
pub Source: windows_sys::core::PCWSTR,
|
2669
|
-
pub Win32Error: u32,
|
2670
|
-
pub Flags: u32,
|
2671
|
-
pub DigitalSigner: windows_sys::core::PCWSTR,
|
2672
|
-
pub Version: windows_sys::core::PCWSTR,
|
2673
|
-
pub CatalogFile: windows_sys::core::PCWSTR,
|
2674
|
-
}
|
2675
|
-
#[repr(C)]
|
2676
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2677
|
-
#[derive(Clone, Copy)]
|
2678
|
-
pub struct FILEPATHS_W {
|
2679
|
-
pub Target: windows_sys::core::PCWSTR,
|
2680
|
-
pub Source: windows_sys::core::PCWSTR,
|
2681
|
-
pub Win32Error: u32,
|
2682
|
-
pub Flags: u32,
|
2683
|
-
}
|
2684
|
-
#[repr(C, packed(1))]
|
2685
|
-
#[cfg(target_arch = "x86")]
|
2686
|
-
#[derive(Clone, Copy)]
|
2687
|
-
pub struct FILEPATHS_W {
|
2688
|
-
pub Target: windows_sys::core::PCWSTR,
|
2689
|
-
pub Source: windows_sys::core::PCWSTR,
|
2690
|
-
pub Win32Error: u32,
|
2691
|
-
pub Flags: u32,
|
2692
|
-
}
|
2693
|
-
#[repr(C)]
|
2694
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2695
|
-
#[derive(Clone, Copy)]
|
2696
|
-
pub struct FILE_IN_CABINET_INFO_A {
|
2697
|
-
pub NameInCabinet: windows_sys::core::PCSTR,
|
2698
|
-
pub FileSize: u32,
|
2699
|
-
pub Win32Error: u32,
|
2700
|
-
pub DosDate: u16,
|
2701
|
-
pub DosTime: u16,
|
2702
|
-
pub DosAttribs: u16,
|
2703
|
-
pub FullTargetName: [i8; 260],
|
2704
|
-
}
|
2705
|
-
#[repr(C, packed(1))]
|
2706
|
-
#[cfg(target_arch = "x86")]
|
2707
|
-
#[derive(Clone, Copy)]
|
2708
|
-
pub struct FILE_IN_CABINET_INFO_A {
|
2709
|
-
pub NameInCabinet: windows_sys::core::PCSTR,
|
2710
|
-
pub FileSize: u32,
|
2711
|
-
pub Win32Error: u32,
|
2712
|
-
pub DosDate: u16,
|
2713
|
-
pub DosTime: u16,
|
2714
|
-
pub DosAttribs: u16,
|
2715
|
-
pub FullTargetName: [i8; 260],
|
2716
|
-
}
|
2717
|
-
#[repr(C)]
|
2718
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2719
|
-
#[derive(Clone, Copy)]
|
2720
|
-
pub struct FILE_IN_CABINET_INFO_W {
|
2721
|
-
pub NameInCabinet: windows_sys::core::PCWSTR,
|
2722
|
-
pub FileSize: u32,
|
2723
|
-
pub Win32Error: u32,
|
2724
|
-
pub DosDate: u16,
|
2725
|
-
pub DosTime: u16,
|
2726
|
-
pub DosAttribs: u16,
|
2727
|
-
pub FullTargetName: [u16; 260],
|
2728
|
-
}
|
2729
|
-
#[repr(C, packed(1))]
|
2730
|
-
#[cfg(target_arch = "x86")]
|
2731
|
-
#[derive(Clone, Copy)]
|
2732
|
-
pub struct FILE_IN_CABINET_INFO_W {
|
2733
|
-
pub NameInCabinet: windows_sys::core::PCWSTR,
|
2734
|
-
pub FileSize: u32,
|
2735
|
-
pub Win32Error: u32,
|
2736
|
-
pub DosDate: u16,
|
2737
|
-
pub DosTime: u16,
|
2738
|
-
pub DosAttribs: u16,
|
2739
|
-
pub FullTargetName: [u16; 260],
|
2740
|
-
}
|
2741
|
-
pub type HCMNOTIFICATION = *mut core::ffi::c_void;
|
2742
|
-
pub type HDEVINFO = isize;
|
2743
|
-
#[repr(C, packed(1))]
|
2744
|
-
#[derive(Clone, Copy)]
|
2745
|
-
pub struct HWPROFILEINFO_A {
|
2746
|
-
pub HWPI_ulHWProfile: u32,
|
2747
|
-
pub HWPI_szFriendlyName: [i8; 80],
|
2748
|
-
pub HWPI_dwFlags: u32,
|
2749
|
-
}
|
2750
|
-
#[repr(C, packed(1))]
|
2751
|
-
#[derive(Clone, Copy)]
|
2752
|
-
pub struct HWPROFILEINFO_W {
|
2753
|
-
pub HWPI_ulHWProfile: u32,
|
2754
|
-
pub HWPI_szFriendlyName: [u16; 80],
|
2755
|
-
pub HWPI_dwFlags: u32,
|
2756
|
-
}
|
2757
|
-
#[repr(C)]
|
2758
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2759
|
-
#[derive(Clone, Copy)]
|
2760
|
-
pub struct INFCONTEXT {
|
2761
|
-
pub Inf: *mut core::ffi::c_void,
|
2762
|
-
pub CurrentInf: *mut core::ffi::c_void,
|
2763
|
-
pub Section: u32,
|
2764
|
-
pub Line: u32,
|
2765
|
-
}
|
2766
|
-
#[repr(C, packed(1))]
|
2767
|
-
#[cfg(target_arch = "x86")]
|
2768
|
-
#[derive(Clone, Copy)]
|
2769
|
-
pub struct INFCONTEXT {
|
2770
|
-
pub Inf: *mut core::ffi::c_void,
|
2771
|
-
pub CurrentInf: *mut core::ffi::c_void,
|
2772
|
-
pub Section: u32,
|
2773
|
-
pub Line: u32,
|
2774
|
-
}
|
2775
|
-
#[repr(C, packed(1))]
|
2776
|
-
#[derive(Clone, Copy)]
|
2777
|
-
pub struct IO_DES {
|
2778
|
-
pub IOD_Count: u32,
|
2779
|
-
pub IOD_Type: u32,
|
2780
|
-
pub IOD_Alloc_Base: u64,
|
2781
|
-
pub IOD_Alloc_End: u64,
|
2782
|
-
pub IOD_DesFlags: IOD_DESFLAGS,
|
2783
|
-
}
|
2784
|
-
#[repr(C, packed(1))]
|
2785
|
-
#[derive(Clone, Copy)]
|
2786
|
-
pub struct IO_RANGE {
|
2787
|
-
pub IOR_Align: u64,
|
2788
|
-
pub IOR_nPorts: u32,
|
2789
|
-
pub IOR_Min: u64,
|
2790
|
-
pub IOR_Max: u64,
|
2791
|
-
pub IOR_RangeFlags: IOD_DESFLAGS,
|
2792
|
-
pub IOR_Alias: u64,
|
2793
|
-
}
|
2794
|
-
#[repr(C)]
|
2795
|
-
#[derive(Clone, Copy)]
|
2796
|
-
pub struct IO_RESOURCE {
|
2797
|
-
pub IO_Header: IO_DES,
|
2798
|
-
pub IO_Data: [IO_RANGE; 1],
|
2799
|
-
}
|
2800
|
-
#[repr(C, packed(1))]
|
2801
|
-
#[derive(Clone, Copy)]
|
2802
|
-
pub struct IRQ_DES_32 {
|
2803
|
-
pub IRQD_Count: u32,
|
2804
|
-
pub IRQD_Type: u32,
|
2805
|
-
pub IRQD_Flags: IRQD_FLAGS,
|
2806
|
-
pub IRQD_Alloc_Num: u32,
|
2807
|
-
pub IRQD_Affinity: u32,
|
2808
|
-
}
|
2809
|
-
#[repr(C, packed(1))]
|
2810
|
-
#[derive(Clone, Copy)]
|
2811
|
-
pub struct IRQ_DES_64 {
|
2812
|
-
pub IRQD_Count: u32,
|
2813
|
-
pub IRQD_Type: u32,
|
2814
|
-
pub IRQD_Flags: IRQD_FLAGS,
|
2815
|
-
pub IRQD_Alloc_Num: u32,
|
2816
|
-
pub IRQD_Affinity: u64,
|
2817
|
-
}
|
2818
|
-
#[repr(C, packed(1))]
|
2819
|
-
#[derive(Clone, Copy)]
|
2820
|
-
pub struct IRQ_RANGE {
|
2821
|
-
pub IRQR_Min: u32,
|
2822
|
-
pub IRQR_Max: u32,
|
2823
|
-
pub IRQR_Flags: IRQD_FLAGS,
|
2824
|
-
}
|
2825
|
-
#[repr(C, packed(1))]
|
2826
|
-
#[derive(Clone, Copy)]
|
2827
|
-
pub struct IRQ_RESOURCE_32 {
|
2828
|
-
pub IRQ_Header: IRQ_DES_32,
|
2829
|
-
pub IRQ_Data: [IRQ_RANGE; 1],
|
2830
|
-
}
|
2831
|
-
#[repr(C, packed(1))]
|
2832
|
-
#[derive(Clone, Copy)]
|
2833
|
-
pub struct IRQ_RESOURCE_64 {
|
2834
|
-
pub IRQ_Header: IRQ_DES_64,
|
2835
|
-
pub IRQ_Data: [IRQ_RANGE; 1],
|
2836
|
-
}
|
2837
|
-
#[repr(C, packed(1))]
|
2838
|
-
#[derive(Clone, Copy)]
|
2839
|
-
pub struct MEM_DES {
|
2840
|
-
pub MD_Count: u32,
|
2841
|
-
pub MD_Type: u32,
|
2842
|
-
pub MD_Alloc_Base: u64,
|
2843
|
-
pub MD_Alloc_End: u64,
|
2844
|
-
pub MD_Flags: MD_FLAGS,
|
2845
|
-
pub MD_Reserved: u32,
|
2846
|
-
}
|
2847
|
-
#[repr(C, packed(1))]
|
2848
|
-
#[derive(Clone, Copy)]
|
2849
|
-
pub struct MEM_LARGE_DES {
|
2850
|
-
pub MLD_Count: u32,
|
2851
|
-
pub MLD_Type: u32,
|
2852
|
-
pub MLD_Alloc_Base: u64,
|
2853
|
-
pub MLD_Alloc_End: u64,
|
2854
|
-
pub MLD_Flags: u32,
|
2855
|
-
pub MLD_Reserved: u32,
|
2856
|
-
}
|
2857
|
-
#[repr(C, packed(1))]
|
2858
|
-
#[derive(Clone, Copy)]
|
2859
|
-
pub struct MEM_LARGE_RANGE {
|
2860
|
-
pub MLR_Align: u64,
|
2861
|
-
pub MLR_nBytes: u64,
|
2862
|
-
pub MLR_Min: u64,
|
2863
|
-
pub MLR_Max: u64,
|
2864
|
-
pub MLR_Flags: u32,
|
2865
|
-
pub MLR_Reserved: u32,
|
2866
|
-
}
|
2867
|
-
#[repr(C, packed(1))]
|
2868
|
-
#[derive(Clone, Copy)]
|
2869
|
-
pub struct MEM_LARGE_RESOURCE {
|
2870
|
-
pub MEM_LARGE_Header: MEM_LARGE_DES,
|
2871
|
-
pub MEM_LARGE_Data: [MEM_LARGE_RANGE; 1],
|
2872
|
-
}
|
2873
|
-
#[repr(C, packed(1))]
|
2874
|
-
#[derive(Clone, Copy)]
|
2875
|
-
pub struct MEM_RANGE {
|
2876
|
-
pub MR_Align: u64,
|
2877
|
-
pub MR_nBytes: u32,
|
2878
|
-
pub MR_Min: u64,
|
2879
|
-
pub MR_Max: u64,
|
2880
|
-
pub MR_Flags: MD_FLAGS,
|
2881
|
-
pub MR_Reserved: u32,
|
2882
|
-
}
|
2883
|
-
#[repr(C, packed(1))]
|
2884
|
-
#[derive(Clone, Copy)]
|
2885
|
-
pub struct MEM_RESOURCE {
|
2886
|
-
pub MEM_Header: MEM_DES,
|
2887
|
-
pub MEM_Data: [MEM_RANGE; 1],
|
2888
|
-
}
|
2889
|
-
#[repr(C, packed(1))]
|
2890
|
-
#[derive(Clone, Copy)]
|
2891
|
-
pub struct MFCARD_DES {
|
2892
|
-
pub PMF_Count: u32,
|
2893
|
-
pub PMF_Type: u32,
|
2894
|
-
pub PMF_Flags: PMF_FLAGS,
|
2895
|
-
pub PMF_ConfigOptions: u8,
|
2896
|
-
pub PMF_IoResourceIndex: u8,
|
2897
|
-
pub PMF_Reserved: [u8; 2],
|
2898
|
-
pub PMF_ConfigRegisterBase: u32,
|
2899
|
-
}
|
2900
|
-
#[repr(C, packed(1))]
|
2901
|
-
#[derive(Clone, Copy)]
|
2902
|
-
pub struct MFCARD_RESOURCE {
|
2903
|
-
pub MfCard_Header: MFCARD_DES,
|
2904
|
-
}
|
2905
|
-
#[repr(C, packed(1))]
|
2906
|
-
#[derive(Clone, Copy)]
|
2907
|
-
pub struct PCCARD_DES {
|
2908
|
-
pub PCD_Count: u32,
|
2909
|
-
pub PCD_Type: u32,
|
2910
|
-
pub PCD_Flags: PCD_FLAGS,
|
2911
|
-
pub PCD_ConfigIndex: u8,
|
2912
|
-
pub PCD_Reserved: [u8; 3],
|
2913
|
-
pub PCD_MemoryCardBase1: u32,
|
2914
|
-
pub PCD_MemoryCardBase2: u32,
|
2915
|
-
pub PCD_MemoryCardBase: [u32; 2],
|
2916
|
-
pub PCD_MemoryFlags: [u16; 2],
|
2917
|
-
pub PCD_IoFlags: [u8; 2],
|
2918
|
-
}
|
2919
|
-
#[repr(C, packed(1))]
|
2920
|
-
#[derive(Clone, Copy)]
|
2921
|
-
pub struct PCCARD_RESOURCE {
|
2922
|
-
pub PcCard_Header: PCCARD_DES,
|
2923
|
-
}
|
2924
|
-
#[repr(C)]
|
2925
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2926
|
-
#[derive(Clone, Copy)]
|
2927
|
-
pub struct SOURCE_MEDIA_A {
|
2928
|
-
pub Reserved: windows_sys::core::PCSTR,
|
2929
|
-
pub Tagfile: windows_sys::core::PCSTR,
|
2930
|
-
pub Description: windows_sys::core::PCSTR,
|
2931
|
-
pub SourcePath: windows_sys::core::PCSTR,
|
2932
|
-
pub SourceFile: windows_sys::core::PCSTR,
|
2933
|
-
pub Flags: u32,
|
2934
|
-
}
|
2935
|
-
#[repr(C, packed(1))]
|
2936
|
-
#[cfg(target_arch = "x86")]
|
2937
|
-
#[derive(Clone, Copy)]
|
2938
|
-
pub struct SOURCE_MEDIA_A {
|
2939
|
-
pub Reserved: windows_sys::core::PCSTR,
|
2940
|
-
pub Tagfile: windows_sys::core::PCSTR,
|
2941
|
-
pub Description: windows_sys::core::PCSTR,
|
2942
|
-
pub SourcePath: windows_sys::core::PCSTR,
|
2943
|
-
pub SourceFile: windows_sys::core::PCSTR,
|
2944
|
-
pub Flags: u32,
|
2945
|
-
}
|
2946
|
-
#[repr(C)]
|
2947
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2948
|
-
#[derive(Clone, Copy)]
|
2949
|
-
pub struct SOURCE_MEDIA_W {
|
2950
|
-
pub Reserved: windows_sys::core::PCWSTR,
|
2951
|
-
pub Tagfile: windows_sys::core::PCWSTR,
|
2952
|
-
pub Description: windows_sys::core::PCWSTR,
|
2953
|
-
pub SourcePath: windows_sys::core::PCWSTR,
|
2954
|
-
pub SourceFile: windows_sys::core::PCWSTR,
|
2955
|
-
pub Flags: u32,
|
2956
|
-
}
|
2957
|
-
#[repr(C, packed(1))]
|
2958
|
-
#[cfg(target_arch = "x86")]
|
2959
|
-
#[derive(Clone, Copy)]
|
2960
|
-
pub struct SOURCE_MEDIA_W {
|
2961
|
-
pub Reserved: windows_sys::core::PCWSTR,
|
2962
|
-
pub Tagfile: windows_sys::core::PCWSTR,
|
2963
|
-
pub Description: windows_sys::core::PCWSTR,
|
2964
|
-
pub SourcePath: windows_sys::core::PCWSTR,
|
2965
|
-
pub SourceFile: windows_sys::core::PCWSTR,
|
2966
|
-
pub Flags: u32,
|
2967
|
-
}
|
2968
|
-
#[repr(C)]
|
2969
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2970
|
-
#[cfg(feature = "Win32_System_Diagnostics_Debug")]
|
2971
|
-
#[derive(Clone, Copy)]
|
2972
|
-
pub struct SP_ALTPLATFORM_INFO_V1 {
|
2973
|
-
pub cbSize: u32,
|
2974
|
-
pub Platform: super::super::System::Diagnostics::Debug::VER_PLATFORM,
|
2975
|
-
pub MajorVersion: u32,
|
2976
|
-
pub MinorVersion: u32,
|
2977
|
-
pub ProcessorArchitecture: u16,
|
2978
|
-
pub Reserved: u16,
|
2979
|
-
}
|
2980
|
-
#[repr(C, packed(1))]
|
2981
|
-
#[cfg(target_arch = "x86")]
|
2982
|
-
#[cfg(feature = "Win32_System_Diagnostics_Debug")]
|
2983
|
-
#[derive(Clone, Copy)]
|
2984
|
-
pub struct SP_ALTPLATFORM_INFO_V1 {
|
2985
|
-
pub cbSize: u32,
|
2986
|
-
pub Platform: super::super::System::Diagnostics::Debug::VER_PLATFORM,
|
2987
|
-
pub MajorVersion: u32,
|
2988
|
-
pub MinorVersion: u32,
|
2989
|
-
pub ProcessorArchitecture: u16,
|
2990
|
-
pub Reserved: u16,
|
2991
|
-
}
|
2992
|
-
#[repr(C)]
|
2993
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
2994
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
2995
|
-
#[derive(Clone, Copy)]
|
2996
|
-
pub struct SP_ALTPLATFORM_INFO_V2 {
|
2997
|
-
pub cbSize: u32,
|
2998
|
-
pub Platform: super::super::System::Diagnostics::Debug::VER_PLATFORM,
|
2999
|
-
pub MajorVersion: u32,
|
3000
|
-
pub MinorVersion: u32,
|
3001
|
-
pub ProcessorArchitecture: super::super::System::SystemInformation::PROCESSOR_ARCHITECTURE,
|
3002
|
-
pub Anonymous: SP_ALTPLATFORM_INFO_V2_0,
|
3003
|
-
pub FirstValidatedMajorVersion: u32,
|
3004
|
-
pub FirstValidatedMinorVersion: u32,
|
3005
|
-
}
|
3006
|
-
#[repr(C)]
|
3007
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3008
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
3009
|
-
#[derive(Clone, Copy)]
|
3010
|
-
pub union SP_ALTPLATFORM_INFO_V2_0 {
|
3011
|
-
pub Reserved: u16,
|
3012
|
-
pub Flags: u16,
|
3013
|
-
}
|
3014
|
-
#[repr(C, packed(1))]
|
3015
|
-
#[cfg(target_arch = "x86")]
|
3016
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
3017
|
-
#[derive(Clone, Copy)]
|
3018
|
-
pub struct SP_ALTPLATFORM_INFO_V2 {
|
3019
|
-
pub cbSize: u32,
|
3020
|
-
pub Platform: super::super::System::Diagnostics::Debug::VER_PLATFORM,
|
3021
|
-
pub MajorVersion: u32,
|
3022
|
-
pub MinorVersion: u32,
|
3023
|
-
pub ProcessorArchitecture: super::super::System::SystemInformation::PROCESSOR_ARCHITECTURE,
|
3024
|
-
pub Anonymous: SP_ALTPLATFORM_INFO_V2_0,
|
3025
|
-
pub FirstValidatedMajorVersion: u32,
|
3026
|
-
pub FirstValidatedMinorVersion: u32,
|
3027
|
-
}
|
3028
|
-
#[repr(C, packed(1))]
|
3029
|
-
#[cfg(target_arch = "x86")]
|
3030
|
-
#[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))]
|
3031
|
-
#[derive(Clone, Copy)]
|
3032
|
-
pub union SP_ALTPLATFORM_INFO_V2_0 {
|
3033
|
-
pub Reserved: u16,
|
3034
|
-
pub Flags: u16,
|
3035
|
-
}
|
3036
|
-
#[repr(C)]
|
3037
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3038
|
-
#[derive(Clone, Copy)]
|
3039
|
-
pub struct SP_ALTPLATFORM_INFO_V3 {
|
3040
|
-
pub cbSize: u32,
|
3041
|
-
pub Platform: u32,
|
3042
|
-
pub MajorVersion: u32,
|
3043
|
-
pub MinorVersion: u32,
|
3044
|
-
pub ProcessorArchitecture: u16,
|
3045
|
-
pub Anonymous: SP_ALTPLATFORM_INFO_V3_0,
|
3046
|
-
pub FirstValidatedMajorVersion: u32,
|
3047
|
-
pub FirstValidatedMinorVersion: u32,
|
3048
|
-
pub ProductType: u8,
|
3049
|
-
pub SuiteMask: u16,
|
3050
|
-
pub BuildNumber: u32,
|
3051
|
-
}
|
3052
|
-
#[repr(C)]
|
3053
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3054
|
-
#[derive(Clone, Copy)]
|
3055
|
-
pub union SP_ALTPLATFORM_INFO_V3_0 {
|
3056
|
-
pub Reserved: u16,
|
3057
|
-
pub Flags: u16,
|
3058
|
-
}
|
3059
|
-
#[repr(C, packed(1))]
|
3060
|
-
#[cfg(target_arch = "x86")]
|
3061
|
-
#[derive(Clone, Copy)]
|
3062
|
-
pub struct SP_ALTPLATFORM_INFO_V3 {
|
3063
|
-
pub cbSize: u32,
|
3064
|
-
pub Platform: u32,
|
3065
|
-
pub MajorVersion: u32,
|
3066
|
-
pub MinorVersion: u32,
|
3067
|
-
pub ProcessorArchitecture: u16,
|
3068
|
-
pub Anonymous: SP_ALTPLATFORM_INFO_V3_0,
|
3069
|
-
pub FirstValidatedMajorVersion: u32,
|
3070
|
-
pub FirstValidatedMinorVersion: u32,
|
3071
|
-
pub ProductType: u8,
|
3072
|
-
pub SuiteMask: u16,
|
3073
|
-
pub BuildNumber: u32,
|
3074
|
-
}
|
3075
|
-
#[repr(C, packed(1))]
|
3076
|
-
#[cfg(target_arch = "x86")]
|
3077
|
-
#[derive(Clone, Copy)]
|
3078
|
-
pub union SP_ALTPLATFORM_INFO_V3_0 {
|
3079
|
-
pub Reserved: u16,
|
3080
|
-
pub Flags: u16,
|
3081
|
-
}
|
3082
|
-
#[repr(C)]
|
3083
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3084
|
-
#[derive(Clone, Copy)]
|
3085
|
-
pub struct SP_BACKUP_QUEUE_PARAMS_V1_A {
|
3086
|
-
pub cbSize: u32,
|
3087
|
-
pub FullInfPath: [i8; 260],
|
3088
|
-
pub FilenameOffset: i32,
|
3089
|
-
}
|
3090
|
-
#[repr(C, packed(1))]
|
3091
|
-
#[cfg(target_arch = "x86")]
|
3092
|
-
#[derive(Clone, Copy)]
|
3093
|
-
pub struct SP_BACKUP_QUEUE_PARAMS_V1_A {
|
3094
|
-
pub cbSize: u32,
|
3095
|
-
pub FullInfPath: [i8; 260],
|
3096
|
-
pub FilenameOffset: i32,
|
3097
|
-
}
|
3098
|
-
#[repr(C)]
|
3099
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3100
|
-
#[derive(Clone, Copy)]
|
3101
|
-
pub struct SP_BACKUP_QUEUE_PARAMS_V1_W {
|
3102
|
-
pub cbSize: u32,
|
3103
|
-
pub FullInfPath: [u16; 260],
|
3104
|
-
pub FilenameOffset: i32,
|
3105
|
-
}
|
3106
|
-
#[repr(C, packed(1))]
|
3107
|
-
#[cfg(target_arch = "x86")]
|
3108
|
-
#[derive(Clone, Copy)]
|
3109
|
-
pub struct SP_BACKUP_QUEUE_PARAMS_V1_W {
|
3110
|
-
pub cbSize: u32,
|
3111
|
-
pub FullInfPath: [u16; 260],
|
3112
|
-
pub FilenameOffset: i32,
|
3113
|
-
}
|
3114
|
-
#[repr(C)]
|
3115
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3116
|
-
#[derive(Clone, Copy)]
|
3117
|
-
pub struct SP_BACKUP_QUEUE_PARAMS_V2_A {
|
3118
|
-
pub cbSize: u32,
|
3119
|
-
pub FullInfPath: [i8; 260],
|
3120
|
-
pub FilenameOffset: i32,
|
3121
|
-
pub ReinstallInstance: [i8; 260],
|
3122
|
-
}
|
3123
|
-
#[repr(C, packed(1))]
|
3124
|
-
#[cfg(target_arch = "x86")]
|
3125
|
-
#[derive(Clone, Copy)]
|
3126
|
-
pub struct SP_BACKUP_QUEUE_PARAMS_V2_A {
|
3127
|
-
pub cbSize: u32,
|
3128
|
-
pub FullInfPath: [i8; 260],
|
3129
|
-
pub FilenameOffset: i32,
|
3130
|
-
pub ReinstallInstance: [i8; 260],
|
3131
|
-
}
|
3132
|
-
#[repr(C)]
|
3133
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3134
|
-
#[derive(Clone, Copy)]
|
3135
|
-
pub struct SP_BACKUP_QUEUE_PARAMS_V2_W {
|
3136
|
-
pub cbSize: u32,
|
3137
|
-
pub FullInfPath: [u16; 260],
|
3138
|
-
pub FilenameOffset: i32,
|
3139
|
-
pub ReinstallInstance: [u16; 260],
|
3140
|
-
}
|
3141
|
-
#[repr(C, packed(1))]
|
3142
|
-
#[cfg(target_arch = "x86")]
|
3143
|
-
#[derive(Clone, Copy)]
|
3144
|
-
pub struct SP_BACKUP_QUEUE_PARAMS_V2_W {
|
3145
|
-
pub cbSize: u32,
|
3146
|
-
pub FullInfPath: [u16; 260],
|
3147
|
-
pub FilenameOffset: i32,
|
3148
|
-
pub ReinstallInstance: [u16; 260],
|
3149
|
-
}
|
3150
|
-
#[repr(C)]
|
3151
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3152
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
3153
|
-
#[derive(Clone, Copy)]
|
3154
|
-
pub struct SP_CLASSIMAGELIST_DATA {
|
3155
|
-
pub cbSize: u32,
|
3156
|
-
pub ImageList: super::super::UI::Controls::HIMAGELIST,
|
3157
|
-
pub Reserved: usize,
|
3158
|
-
}
|
3159
|
-
#[repr(C, packed(1))]
|
3160
|
-
#[cfg(target_arch = "x86")]
|
3161
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
3162
|
-
#[derive(Clone, Copy)]
|
3163
|
-
pub struct SP_CLASSIMAGELIST_DATA {
|
3164
|
-
pub cbSize: u32,
|
3165
|
-
pub ImageList: super::super::UI::Controls::HIMAGELIST,
|
3166
|
-
pub Reserved: usize,
|
3167
|
-
}
|
3168
|
-
#[repr(C)]
|
3169
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3170
|
-
#[derive(Clone, Copy)]
|
3171
|
-
pub struct SP_CLASSINSTALL_HEADER {
|
3172
|
-
pub cbSize: u32,
|
3173
|
-
pub InstallFunction: DI_FUNCTION,
|
3174
|
-
}
|
3175
|
-
#[repr(C, packed(1))]
|
3176
|
-
#[cfg(target_arch = "x86")]
|
3177
|
-
#[derive(Clone, Copy)]
|
3178
|
-
pub struct SP_CLASSINSTALL_HEADER {
|
3179
|
-
pub cbSize: u32,
|
3180
|
-
pub InstallFunction: DI_FUNCTION,
|
3181
|
-
}
|
3182
|
-
#[repr(C)]
|
3183
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3184
|
-
#[derive(Clone, Copy)]
|
3185
|
-
pub struct SP_DETECTDEVICE_PARAMS {
|
3186
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3187
|
-
pub DetectProgressNotify: PDETECT_PROGRESS_NOTIFY,
|
3188
|
-
pub ProgressNotifyParam: *mut core::ffi::c_void,
|
3189
|
-
}
|
3190
|
-
#[repr(C, packed(1))]
|
3191
|
-
#[cfg(target_arch = "x86")]
|
3192
|
-
#[derive(Clone, Copy)]
|
3193
|
-
pub struct SP_DETECTDEVICE_PARAMS {
|
3194
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3195
|
-
pub DetectProgressNotify: PDETECT_PROGRESS_NOTIFY,
|
3196
|
-
pub ProgressNotifyParam: *mut core::ffi::c_void,
|
3197
|
-
}
|
3198
|
-
#[repr(C)]
|
3199
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3200
|
-
#[derive(Clone, Copy)]
|
3201
|
-
pub struct SP_DEVICE_INTERFACE_DATA {
|
3202
|
-
pub cbSize: u32,
|
3203
|
-
pub InterfaceClassGuid: windows_sys::core::GUID,
|
3204
|
-
pub Flags: u32,
|
3205
|
-
pub Reserved: usize,
|
3206
|
-
}
|
3207
|
-
#[repr(C, packed(1))]
|
3208
|
-
#[cfg(target_arch = "x86")]
|
3209
|
-
#[derive(Clone, Copy)]
|
3210
|
-
pub struct SP_DEVICE_INTERFACE_DATA {
|
3211
|
-
pub cbSize: u32,
|
3212
|
-
pub InterfaceClassGuid: windows_sys::core::GUID,
|
3213
|
-
pub Flags: u32,
|
3214
|
-
pub Reserved: usize,
|
3215
|
-
}
|
3216
|
-
#[repr(C)]
|
3217
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3218
|
-
#[derive(Clone, Copy)]
|
3219
|
-
pub struct SP_DEVICE_INTERFACE_DETAIL_DATA_A {
|
3220
|
-
pub cbSize: u32,
|
3221
|
-
pub DevicePath: [i8; 1],
|
3222
|
-
}
|
3223
|
-
#[repr(C, packed(1))]
|
3224
|
-
#[cfg(target_arch = "x86")]
|
3225
|
-
#[derive(Clone, Copy)]
|
3226
|
-
pub struct SP_DEVICE_INTERFACE_DETAIL_DATA_A {
|
3227
|
-
pub cbSize: u32,
|
3228
|
-
pub DevicePath: [i8; 1],
|
3229
|
-
}
|
3230
|
-
#[repr(C)]
|
3231
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3232
|
-
#[derive(Clone, Copy)]
|
3233
|
-
pub struct SP_DEVICE_INTERFACE_DETAIL_DATA_W {
|
3234
|
-
pub cbSize: u32,
|
3235
|
-
pub DevicePath: [u16; 1],
|
3236
|
-
}
|
3237
|
-
#[repr(C, packed(1))]
|
3238
|
-
#[cfg(target_arch = "x86")]
|
3239
|
-
#[derive(Clone, Copy)]
|
3240
|
-
pub struct SP_DEVICE_INTERFACE_DETAIL_DATA_W {
|
3241
|
-
pub cbSize: u32,
|
3242
|
-
pub DevicePath: [u16; 1],
|
3243
|
-
}
|
3244
|
-
#[repr(C)]
|
3245
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3246
|
-
#[derive(Clone, Copy)]
|
3247
|
-
pub struct SP_DEVINFO_DATA {
|
3248
|
-
pub cbSize: u32,
|
3249
|
-
pub ClassGuid: windows_sys::core::GUID,
|
3250
|
-
pub DevInst: u32,
|
3251
|
-
pub Reserved: usize,
|
3252
|
-
}
|
3253
|
-
#[repr(C, packed(1))]
|
3254
|
-
#[cfg(target_arch = "x86")]
|
3255
|
-
#[derive(Clone, Copy)]
|
3256
|
-
pub struct SP_DEVINFO_DATA {
|
3257
|
-
pub cbSize: u32,
|
3258
|
-
pub ClassGuid: windows_sys::core::GUID,
|
3259
|
-
pub DevInst: u32,
|
3260
|
-
pub Reserved: usize,
|
3261
|
-
}
|
3262
|
-
#[repr(C)]
|
3263
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3264
|
-
#[derive(Clone, Copy)]
|
3265
|
-
pub struct SP_DEVINFO_LIST_DETAIL_DATA_A {
|
3266
|
-
pub cbSize: u32,
|
3267
|
-
pub ClassGuid: windows_sys::core::GUID,
|
3268
|
-
pub RemoteMachineHandle: super::super::Foundation::HANDLE,
|
3269
|
-
pub RemoteMachineName: [i8; 263],
|
3270
|
-
}
|
3271
|
-
#[repr(C, packed(1))]
|
3272
|
-
#[cfg(target_arch = "x86")]
|
3273
|
-
#[derive(Clone, Copy)]
|
3274
|
-
pub struct SP_DEVINFO_LIST_DETAIL_DATA_A {
|
3275
|
-
pub cbSize: u32,
|
3276
|
-
pub ClassGuid: windows_sys::core::GUID,
|
3277
|
-
pub RemoteMachineHandle: super::super::Foundation::HANDLE,
|
3278
|
-
pub RemoteMachineName: [i8; 263],
|
3279
|
-
}
|
3280
|
-
#[repr(C)]
|
3281
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3282
|
-
#[derive(Clone, Copy)]
|
3283
|
-
pub struct SP_DEVINFO_LIST_DETAIL_DATA_W {
|
3284
|
-
pub cbSize: u32,
|
3285
|
-
pub ClassGuid: windows_sys::core::GUID,
|
3286
|
-
pub RemoteMachineHandle: super::super::Foundation::HANDLE,
|
3287
|
-
pub RemoteMachineName: [u16; 263],
|
3288
|
-
}
|
3289
|
-
#[repr(C, packed(1))]
|
3290
|
-
#[cfg(target_arch = "x86")]
|
3291
|
-
#[derive(Clone, Copy)]
|
3292
|
-
pub struct SP_DEVINFO_LIST_DETAIL_DATA_W {
|
3293
|
-
pub cbSize: u32,
|
3294
|
-
pub ClassGuid: windows_sys::core::GUID,
|
3295
|
-
pub RemoteMachineHandle: super::super::Foundation::HANDLE,
|
3296
|
-
pub RemoteMachineName: [u16; 263],
|
3297
|
-
}
|
3298
|
-
#[repr(C)]
|
3299
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3300
|
-
#[derive(Clone, Copy)]
|
3301
|
-
pub struct SP_DEVINSTALL_PARAMS_A {
|
3302
|
-
pub cbSize: u32,
|
3303
|
-
pub Flags: SETUP_DI_DEVICE_INSTALL_FLAGS,
|
3304
|
-
pub FlagsEx: SETUP_DI_DEVICE_INSTALL_FLAGS_EX,
|
3305
|
-
pub hwndParent: super::super::Foundation::HWND,
|
3306
|
-
pub InstallMsgHandler: PSP_FILE_CALLBACK_A,
|
3307
|
-
pub InstallMsgHandlerContext: *mut core::ffi::c_void,
|
3308
|
-
pub FileQueue: *mut core::ffi::c_void,
|
3309
|
-
pub ClassInstallReserved: usize,
|
3310
|
-
pub Reserved: u32,
|
3311
|
-
pub DriverPath: [i8; 260],
|
3312
|
-
}
|
3313
|
-
#[repr(C, packed(1))]
|
3314
|
-
#[cfg(target_arch = "x86")]
|
3315
|
-
#[derive(Clone, Copy)]
|
3316
|
-
pub struct SP_DEVINSTALL_PARAMS_A {
|
3317
|
-
pub cbSize: u32,
|
3318
|
-
pub Flags: SETUP_DI_DEVICE_INSTALL_FLAGS,
|
3319
|
-
pub FlagsEx: SETUP_DI_DEVICE_INSTALL_FLAGS_EX,
|
3320
|
-
pub hwndParent: super::super::Foundation::HWND,
|
3321
|
-
pub InstallMsgHandler: PSP_FILE_CALLBACK_A,
|
3322
|
-
pub InstallMsgHandlerContext: *mut core::ffi::c_void,
|
3323
|
-
pub FileQueue: *mut core::ffi::c_void,
|
3324
|
-
pub ClassInstallReserved: usize,
|
3325
|
-
pub Reserved: u32,
|
3326
|
-
pub DriverPath: [i8; 260],
|
3327
|
-
}
|
3328
|
-
#[repr(C)]
|
3329
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3330
|
-
#[derive(Clone, Copy)]
|
3331
|
-
pub struct SP_DEVINSTALL_PARAMS_W {
|
3332
|
-
pub cbSize: u32,
|
3333
|
-
pub Flags: SETUP_DI_DEVICE_INSTALL_FLAGS,
|
3334
|
-
pub FlagsEx: SETUP_DI_DEVICE_INSTALL_FLAGS_EX,
|
3335
|
-
pub hwndParent: super::super::Foundation::HWND,
|
3336
|
-
pub InstallMsgHandler: PSP_FILE_CALLBACK_W,
|
3337
|
-
pub InstallMsgHandlerContext: *mut core::ffi::c_void,
|
3338
|
-
pub FileQueue: *mut core::ffi::c_void,
|
3339
|
-
pub ClassInstallReserved: usize,
|
3340
|
-
pub Reserved: u32,
|
3341
|
-
pub DriverPath: [u16; 260],
|
3342
|
-
}
|
3343
|
-
#[repr(C, packed(1))]
|
3344
|
-
#[cfg(target_arch = "x86")]
|
3345
|
-
#[derive(Clone, Copy)]
|
3346
|
-
pub struct SP_DEVINSTALL_PARAMS_W {
|
3347
|
-
pub cbSize: u32,
|
3348
|
-
pub Flags: SETUP_DI_DEVICE_INSTALL_FLAGS,
|
3349
|
-
pub FlagsEx: SETUP_DI_DEVICE_INSTALL_FLAGS_EX,
|
3350
|
-
pub hwndParent: super::super::Foundation::HWND,
|
3351
|
-
pub InstallMsgHandler: PSP_FILE_CALLBACK_W,
|
3352
|
-
pub InstallMsgHandlerContext: *mut core::ffi::c_void,
|
3353
|
-
pub FileQueue: *mut core::ffi::c_void,
|
3354
|
-
pub ClassInstallReserved: usize,
|
3355
|
-
pub Reserved: u32,
|
3356
|
-
pub DriverPath: [u16; 260],
|
3357
|
-
}
|
3358
|
-
#[repr(C)]
|
3359
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3360
|
-
#[derive(Clone, Copy)]
|
3361
|
-
pub struct SP_DRVINFO_DATA_V1_A {
|
3362
|
-
pub cbSize: u32,
|
3363
|
-
pub DriverType: u32,
|
3364
|
-
pub Reserved: usize,
|
3365
|
-
pub Description: [i8; 256],
|
3366
|
-
pub MfgName: [i8; 256],
|
3367
|
-
pub ProviderName: [i8; 256],
|
3368
|
-
}
|
3369
|
-
#[repr(C, packed(1))]
|
3370
|
-
#[cfg(target_arch = "x86")]
|
3371
|
-
#[derive(Clone, Copy)]
|
3372
|
-
pub struct SP_DRVINFO_DATA_V1_A {
|
3373
|
-
pub cbSize: u32,
|
3374
|
-
pub DriverType: u32,
|
3375
|
-
pub Reserved: usize,
|
3376
|
-
pub Description: [i8; 256],
|
3377
|
-
pub MfgName: [i8; 256],
|
3378
|
-
pub ProviderName: [i8; 256],
|
3379
|
-
}
|
3380
|
-
#[repr(C)]
|
3381
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3382
|
-
#[derive(Clone, Copy)]
|
3383
|
-
pub struct SP_DRVINFO_DATA_V1_W {
|
3384
|
-
pub cbSize: u32,
|
3385
|
-
pub DriverType: u32,
|
3386
|
-
pub Reserved: usize,
|
3387
|
-
pub Description: [u16; 256],
|
3388
|
-
pub MfgName: [u16; 256],
|
3389
|
-
pub ProviderName: [u16; 256],
|
3390
|
-
}
|
3391
|
-
#[repr(C, packed(1))]
|
3392
|
-
#[cfg(target_arch = "x86")]
|
3393
|
-
#[derive(Clone, Copy)]
|
3394
|
-
pub struct SP_DRVINFO_DATA_V1_W {
|
3395
|
-
pub cbSize: u32,
|
3396
|
-
pub DriverType: u32,
|
3397
|
-
pub Reserved: usize,
|
3398
|
-
pub Description: [u16; 256],
|
3399
|
-
pub MfgName: [u16; 256],
|
3400
|
-
pub ProviderName: [u16; 256],
|
3401
|
-
}
|
3402
|
-
#[repr(C)]
|
3403
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3404
|
-
#[derive(Clone, Copy)]
|
3405
|
-
pub struct SP_DRVINFO_DATA_V2_A {
|
3406
|
-
pub cbSize: u32,
|
3407
|
-
pub DriverType: u32,
|
3408
|
-
pub Reserved: usize,
|
3409
|
-
pub Description: [i8; 256],
|
3410
|
-
pub MfgName: [i8; 256],
|
3411
|
-
pub ProviderName: [i8; 256],
|
3412
|
-
pub DriverDate: super::super::Foundation::FILETIME,
|
3413
|
-
pub DriverVersion: u64,
|
3414
|
-
}
|
3415
|
-
#[repr(C, packed(1))]
|
3416
|
-
#[cfg(target_arch = "x86")]
|
3417
|
-
#[derive(Clone, Copy)]
|
3418
|
-
pub struct SP_DRVINFO_DATA_V2_A {
|
3419
|
-
pub cbSize: u32,
|
3420
|
-
pub DriverType: u32,
|
3421
|
-
pub Reserved: usize,
|
3422
|
-
pub Description: [i8; 256],
|
3423
|
-
pub MfgName: [i8; 256],
|
3424
|
-
pub ProviderName: [i8; 256],
|
3425
|
-
pub DriverDate: super::super::Foundation::FILETIME,
|
3426
|
-
pub DriverVersion: u64,
|
3427
|
-
}
|
3428
|
-
#[repr(C)]
|
3429
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3430
|
-
#[derive(Clone, Copy)]
|
3431
|
-
pub struct SP_DRVINFO_DATA_V2_W {
|
3432
|
-
pub cbSize: u32,
|
3433
|
-
pub DriverType: u32,
|
3434
|
-
pub Reserved: usize,
|
3435
|
-
pub Description: [u16; 256],
|
3436
|
-
pub MfgName: [u16; 256],
|
3437
|
-
pub ProviderName: [u16; 256],
|
3438
|
-
pub DriverDate: super::super::Foundation::FILETIME,
|
3439
|
-
pub DriverVersion: u64,
|
3440
|
-
}
|
3441
|
-
#[repr(C, packed(1))]
|
3442
|
-
#[cfg(target_arch = "x86")]
|
3443
|
-
#[derive(Clone, Copy)]
|
3444
|
-
pub struct SP_DRVINFO_DATA_V2_W {
|
3445
|
-
pub cbSize: u32,
|
3446
|
-
pub DriverType: u32,
|
3447
|
-
pub Reserved: usize,
|
3448
|
-
pub Description: [u16; 256],
|
3449
|
-
pub MfgName: [u16; 256],
|
3450
|
-
pub ProviderName: [u16; 256],
|
3451
|
-
pub DriverDate: super::super::Foundation::FILETIME,
|
3452
|
-
pub DriverVersion: u64,
|
3453
|
-
}
|
3454
|
-
#[repr(C)]
|
3455
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3456
|
-
#[derive(Clone, Copy)]
|
3457
|
-
pub struct SP_DRVINFO_DETAIL_DATA_A {
|
3458
|
-
pub cbSize: u32,
|
3459
|
-
pub InfDate: super::super::Foundation::FILETIME,
|
3460
|
-
pub CompatIDsOffset: u32,
|
3461
|
-
pub CompatIDsLength: u32,
|
3462
|
-
pub Reserved: usize,
|
3463
|
-
pub SectionName: [i8; 256],
|
3464
|
-
pub InfFileName: [i8; 260],
|
3465
|
-
pub DrvDescription: [i8; 256],
|
3466
|
-
pub HardwareID: [i8; 1],
|
3467
|
-
}
|
3468
|
-
#[repr(C, packed(1))]
|
3469
|
-
#[cfg(target_arch = "x86")]
|
3470
|
-
#[derive(Clone, Copy)]
|
3471
|
-
pub struct SP_DRVINFO_DETAIL_DATA_A {
|
3472
|
-
pub cbSize: u32,
|
3473
|
-
pub InfDate: super::super::Foundation::FILETIME,
|
3474
|
-
pub CompatIDsOffset: u32,
|
3475
|
-
pub CompatIDsLength: u32,
|
3476
|
-
pub Reserved: usize,
|
3477
|
-
pub SectionName: [i8; 256],
|
3478
|
-
pub InfFileName: [i8; 260],
|
3479
|
-
pub DrvDescription: [i8; 256],
|
3480
|
-
pub HardwareID: [i8; 1],
|
3481
|
-
}
|
3482
|
-
#[repr(C)]
|
3483
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3484
|
-
#[derive(Clone, Copy)]
|
3485
|
-
pub struct SP_DRVINFO_DETAIL_DATA_W {
|
3486
|
-
pub cbSize: u32,
|
3487
|
-
pub InfDate: super::super::Foundation::FILETIME,
|
3488
|
-
pub CompatIDsOffset: u32,
|
3489
|
-
pub CompatIDsLength: u32,
|
3490
|
-
pub Reserved: usize,
|
3491
|
-
pub SectionName: [u16; 256],
|
3492
|
-
pub InfFileName: [u16; 260],
|
3493
|
-
pub DrvDescription: [u16; 256],
|
3494
|
-
pub HardwareID: [u16; 1],
|
3495
|
-
}
|
3496
|
-
#[repr(C, packed(1))]
|
3497
|
-
#[cfg(target_arch = "x86")]
|
3498
|
-
#[derive(Clone, Copy)]
|
3499
|
-
pub struct SP_DRVINFO_DETAIL_DATA_W {
|
3500
|
-
pub cbSize: u32,
|
3501
|
-
pub InfDate: super::super::Foundation::FILETIME,
|
3502
|
-
pub CompatIDsOffset: u32,
|
3503
|
-
pub CompatIDsLength: u32,
|
3504
|
-
pub Reserved: usize,
|
3505
|
-
pub SectionName: [u16; 256],
|
3506
|
-
pub InfFileName: [u16; 260],
|
3507
|
-
pub DrvDescription: [u16; 256],
|
3508
|
-
pub HardwareID: [u16; 1],
|
3509
|
-
}
|
3510
|
-
#[repr(C)]
|
3511
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3512
|
-
#[derive(Clone, Copy)]
|
3513
|
-
pub struct SP_DRVINSTALL_PARAMS {
|
3514
|
-
pub cbSize: u32,
|
3515
|
-
pub Rank: u32,
|
3516
|
-
pub Flags: SETUP_DI_DRIVER_INSTALL_FLAGS,
|
3517
|
-
pub PrivateData: usize,
|
3518
|
-
pub Reserved: u32,
|
3519
|
-
}
|
3520
|
-
#[repr(C, packed(1))]
|
3521
|
-
#[cfg(target_arch = "x86")]
|
3522
|
-
#[derive(Clone, Copy)]
|
3523
|
-
pub struct SP_DRVINSTALL_PARAMS {
|
3524
|
-
pub cbSize: u32,
|
3525
|
-
pub Rank: u32,
|
3526
|
-
pub Flags: SETUP_DI_DRIVER_INSTALL_FLAGS,
|
3527
|
-
pub PrivateData: usize,
|
3528
|
-
pub Reserved: u32,
|
3529
|
-
}
|
3530
|
-
#[repr(C)]
|
3531
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3532
|
-
#[derive(Clone, Copy)]
|
3533
|
-
pub struct SP_ENABLECLASS_PARAMS {
|
3534
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3535
|
-
pub ClassGuid: windows_sys::core::GUID,
|
3536
|
-
pub EnableMessage: u32,
|
3537
|
-
}
|
3538
|
-
#[repr(C, packed(1))]
|
3539
|
-
#[cfg(target_arch = "x86")]
|
3540
|
-
#[derive(Clone, Copy)]
|
3541
|
-
pub struct SP_ENABLECLASS_PARAMS {
|
3542
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3543
|
-
pub ClassGuid: windows_sys::core::GUID,
|
3544
|
-
pub EnableMessage: u32,
|
3545
|
-
}
|
3546
|
-
#[repr(C)]
|
3547
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3548
|
-
#[derive(Clone, Copy)]
|
3549
|
-
pub struct SP_FILE_COPY_PARAMS_A {
|
3550
|
-
pub cbSize: u32,
|
3551
|
-
pub QueueHandle: *mut core::ffi::c_void,
|
3552
|
-
pub SourceRootPath: windows_sys::core::PCSTR,
|
3553
|
-
pub SourcePath: windows_sys::core::PCSTR,
|
3554
|
-
pub SourceFilename: windows_sys::core::PCSTR,
|
3555
|
-
pub SourceDescription: windows_sys::core::PCSTR,
|
3556
|
-
pub SourceTagfile: windows_sys::core::PCSTR,
|
3557
|
-
pub TargetDirectory: windows_sys::core::PCSTR,
|
3558
|
-
pub TargetFilename: windows_sys::core::PCSTR,
|
3559
|
-
pub CopyStyle: u32,
|
3560
|
-
pub LayoutInf: *mut core::ffi::c_void,
|
3561
|
-
pub SecurityDescriptor: windows_sys::core::PCSTR,
|
3562
|
-
}
|
3563
|
-
#[repr(C, packed(1))]
|
3564
|
-
#[cfg(target_arch = "x86")]
|
3565
|
-
#[derive(Clone, Copy)]
|
3566
|
-
pub struct SP_FILE_COPY_PARAMS_A {
|
3567
|
-
pub cbSize: u32,
|
3568
|
-
pub QueueHandle: *mut core::ffi::c_void,
|
3569
|
-
pub SourceRootPath: windows_sys::core::PCSTR,
|
3570
|
-
pub SourcePath: windows_sys::core::PCSTR,
|
3571
|
-
pub SourceFilename: windows_sys::core::PCSTR,
|
3572
|
-
pub SourceDescription: windows_sys::core::PCSTR,
|
3573
|
-
pub SourceTagfile: windows_sys::core::PCSTR,
|
3574
|
-
pub TargetDirectory: windows_sys::core::PCSTR,
|
3575
|
-
pub TargetFilename: windows_sys::core::PCSTR,
|
3576
|
-
pub CopyStyle: u32,
|
3577
|
-
pub LayoutInf: *mut core::ffi::c_void,
|
3578
|
-
pub SecurityDescriptor: windows_sys::core::PCSTR,
|
3579
|
-
}
|
3580
|
-
#[repr(C)]
|
3581
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3582
|
-
#[derive(Clone, Copy)]
|
3583
|
-
pub struct SP_FILE_COPY_PARAMS_W {
|
3584
|
-
pub cbSize: u32,
|
3585
|
-
pub QueueHandle: *mut core::ffi::c_void,
|
3586
|
-
pub SourceRootPath: windows_sys::core::PCWSTR,
|
3587
|
-
pub SourcePath: windows_sys::core::PCWSTR,
|
3588
|
-
pub SourceFilename: windows_sys::core::PCWSTR,
|
3589
|
-
pub SourceDescription: windows_sys::core::PCWSTR,
|
3590
|
-
pub SourceTagfile: windows_sys::core::PCWSTR,
|
3591
|
-
pub TargetDirectory: windows_sys::core::PCWSTR,
|
3592
|
-
pub TargetFilename: windows_sys::core::PCWSTR,
|
3593
|
-
pub CopyStyle: u32,
|
3594
|
-
pub LayoutInf: *mut core::ffi::c_void,
|
3595
|
-
pub SecurityDescriptor: windows_sys::core::PCWSTR,
|
3596
|
-
}
|
3597
|
-
#[repr(C, packed(1))]
|
3598
|
-
#[cfg(target_arch = "x86")]
|
3599
|
-
#[derive(Clone, Copy)]
|
3600
|
-
pub struct SP_FILE_COPY_PARAMS_W {
|
3601
|
-
pub cbSize: u32,
|
3602
|
-
pub QueueHandle: *mut core::ffi::c_void,
|
3603
|
-
pub SourceRootPath: windows_sys::core::PCWSTR,
|
3604
|
-
pub SourcePath: windows_sys::core::PCWSTR,
|
3605
|
-
pub SourceFilename: windows_sys::core::PCWSTR,
|
3606
|
-
pub SourceDescription: windows_sys::core::PCWSTR,
|
3607
|
-
pub SourceTagfile: windows_sys::core::PCWSTR,
|
3608
|
-
pub TargetDirectory: windows_sys::core::PCWSTR,
|
3609
|
-
pub TargetFilename: windows_sys::core::PCWSTR,
|
3610
|
-
pub CopyStyle: u32,
|
3611
|
-
pub LayoutInf: *mut core::ffi::c_void,
|
3612
|
-
pub SecurityDescriptor: windows_sys::core::PCWSTR,
|
3613
|
-
}
|
3614
|
-
#[repr(C)]
|
3615
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3616
|
-
#[derive(Clone, Copy)]
|
3617
|
-
pub struct SP_INF_INFORMATION {
|
3618
|
-
pub InfStyle: INF_STYLE,
|
3619
|
-
pub InfCount: u32,
|
3620
|
-
pub VersionData: [u8; 1],
|
3621
|
-
}
|
3622
|
-
#[repr(C, packed(1))]
|
3623
|
-
#[cfg(target_arch = "x86")]
|
3624
|
-
#[derive(Clone, Copy)]
|
3625
|
-
pub struct SP_INF_INFORMATION {
|
3626
|
-
pub InfStyle: INF_STYLE,
|
3627
|
-
pub InfCount: u32,
|
3628
|
-
pub VersionData: [u8; 1],
|
3629
|
-
}
|
3630
|
-
#[repr(C)]
|
3631
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3632
|
-
#[derive(Clone, Copy)]
|
3633
|
-
pub struct SP_INF_SIGNER_INFO_V1_A {
|
3634
|
-
pub cbSize: u32,
|
3635
|
-
pub CatalogFile: [i8; 260],
|
3636
|
-
pub DigitalSigner: [i8; 260],
|
3637
|
-
pub DigitalSignerVersion: [i8; 260],
|
3638
|
-
}
|
3639
|
-
#[repr(C, packed(1))]
|
3640
|
-
#[cfg(target_arch = "x86")]
|
3641
|
-
#[derive(Clone, Copy)]
|
3642
|
-
pub struct SP_INF_SIGNER_INFO_V1_A {
|
3643
|
-
pub cbSize: u32,
|
3644
|
-
pub CatalogFile: [i8; 260],
|
3645
|
-
pub DigitalSigner: [i8; 260],
|
3646
|
-
pub DigitalSignerVersion: [i8; 260],
|
3647
|
-
}
|
3648
|
-
#[repr(C)]
|
3649
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3650
|
-
#[derive(Clone, Copy)]
|
3651
|
-
pub struct SP_INF_SIGNER_INFO_V1_W {
|
3652
|
-
pub cbSize: u32,
|
3653
|
-
pub CatalogFile: [u16; 260],
|
3654
|
-
pub DigitalSigner: [u16; 260],
|
3655
|
-
pub DigitalSignerVersion: [u16; 260],
|
3656
|
-
}
|
3657
|
-
#[repr(C, packed(1))]
|
3658
|
-
#[cfg(target_arch = "x86")]
|
3659
|
-
#[derive(Clone, Copy)]
|
3660
|
-
pub struct SP_INF_SIGNER_INFO_V1_W {
|
3661
|
-
pub cbSize: u32,
|
3662
|
-
pub CatalogFile: [u16; 260],
|
3663
|
-
pub DigitalSigner: [u16; 260],
|
3664
|
-
pub DigitalSignerVersion: [u16; 260],
|
3665
|
-
}
|
3666
|
-
#[repr(C)]
|
3667
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3668
|
-
#[derive(Clone, Copy)]
|
3669
|
-
pub struct SP_INF_SIGNER_INFO_V2_A {
|
3670
|
-
pub cbSize: u32,
|
3671
|
-
pub CatalogFile: [i8; 260],
|
3672
|
-
pub DigitalSigner: [i8; 260],
|
3673
|
-
pub DigitalSignerVersion: [i8; 260],
|
3674
|
-
pub SignerScore: u32,
|
3675
|
-
}
|
3676
|
-
#[repr(C, packed(1))]
|
3677
|
-
#[cfg(target_arch = "x86")]
|
3678
|
-
#[derive(Clone, Copy)]
|
3679
|
-
pub struct SP_INF_SIGNER_INFO_V2_A {
|
3680
|
-
pub cbSize: u32,
|
3681
|
-
pub CatalogFile: [i8; 260],
|
3682
|
-
pub DigitalSigner: [i8; 260],
|
3683
|
-
pub DigitalSignerVersion: [i8; 260],
|
3684
|
-
pub SignerScore: u32,
|
3685
|
-
}
|
3686
|
-
#[repr(C)]
|
3687
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3688
|
-
#[derive(Clone, Copy)]
|
3689
|
-
pub struct SP_INF_SIGNER_INFO_V2_W {
|
3690
|
-
pub cbSize: u32,
|
3691
|
-
pub CatalogFile: [u16; 260],
|
3692
|
-
pub DigitalSigner: [u16; 260],
|
3693
|
-
pub DigitalSignerVersion: [u16; 260],
|
3694
|
-
pub SignerScore: u32,
|
3695
|
-
}
|
3696
|
-
#[repr(C, packed(1))]
|
3697
|
-
#[cfg(target_arch = "x86")]
|
3698
|
-
#[derive(Clone, Copy)]
|
3699
|
-
pub struct SP_INF_SIGNER_INFO_V2_W {
|
3700
|
-
pub cbSize: u32,
|
3701
|
-
pub CatalogFile: [u16; 260],
|
3702
|
-
pub DigitalSigner: [u16; 260],
|
3703
|
-
pub DigitalSignerVersion: [u16; 260],
|
3704
|
-
pub SignerScore: u32,
|
3705
|
-
}
|
3706
|
-
#[repr(C)]
|
3707
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3708
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
3709
|
-
#[derive(Clone, Copy)]
|
3710
|
-
pub struct SP_INSTALLWIZARD_DATA {
|
3711
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3712
|
-
pub Flags: u32,
|
3713
|
-
pub DynamicPages: [super::super::UI::Controls::HPROPSHEETPAGE; 20],
|
3714
|
-
pub NumDynamicPages: u32,
|
3715
|
-
pub DynamicPageFlags: u32,
|
3716
|
-
pub PrivateFlags: u32,
|
3717
|
-
pub PrivateData: super::super::Foundation::LPARAM,
|
3718
|
-
pub hwndWizardDlg: super::super::Foundation::HWND,
|
3719
|
-
}
|
3720
|
-
#[repr(C, packed(1))]
|
3721
|
-
#[cfg(target_arch = "x86")]
|
3722
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
3723
|
-
#[derive(Clone, Copy)]
|
3724
|
-
pub struct SP_INSTALLWIZARD_DATA {
|
3725
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3726
|
-
pub Flags: u32,
|
3727
|
-
pub DynamicPages: [super::super::UI::Controls::HPROPSHEETPAGE; 20],
|
3728
|
-
pub NumDynamicPages: u32,
|
3729
|
-
pub DynamicPageFlags: u32,
|
3730
|
-
pub PrivateFlags: u32,
|
3731
|
-
pub PrivateData: super::super::Foundation::LPARAM,
|
3732
|
-
pub hwndWizardDlg: super::super::Foundation::HWND,
|
3733
|
-
}
|
3734
|
-
#[repr(C)]
|
3735
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3736
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
3737
|
-
#[derive(Clone, Copy)]
|
3738
|
-
pub struct SP_NEWDEVICEWIZARD_DATA {
|
3739
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3740
|
-
pub Flags: u32,
|
3741
|
-
pub DynamicPages: [super::super::UI::Controls::HPROPSHEETPAGE; 20],
|
3742
|
-
pub NumDynamicPages: u32,
|
3743
|
-
pub hwndWizardDlg: super::super::Foundation::HWND,
|
3744
|
-
}
|
3745
|
-
#[repr(C, packed(1))]
|
3746
|
-
#[cfg(target_arch = "x86")]
|
3747
|
-
#[cfg(feature = "Win32_UI_Controls")]
|
3748
|
-
#[derive(Clone, Copy)]
|
3749
|
-
pub struct SP_NEWDEVICEWIZARD_DATA {
|
3750
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3751
|
-
pub Flags: u32,
|
3752
|
-
pub DynamicPages: [super::super::UI::Controls::HPROPSHEETPAGE; 20],
|
3753
|
-
pub NumDynamicPages: u32,
|
3754
|
-
pub hwndWizardDlg: super::super::Foundation::HWND,
|
3755
|
-
}
|
3756
|
-
#[repr(C)]
|
3757
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3758
|
-
#[derive(Clone, Copy)]
|
3759
|
-
pub struct SP_ORIGINAL_FILE_INFO_A {
|
3760
|
-
pub cbSize: u32,
|
3761
|
-
pub OriginalInfName: [i8; 260],
|
3762
|
-
pub OriginalCatalogName: [i8; 260],
|
3763
|
-
}
|
3764
|
-
#[repr(C, packed(1))]
|
3765
|
-
#[cfg(target_arch = "x86")]
|
3766
|
-
#[derive(Clone, Copy)]
|
3767
|
-
pub struct SP_ORIGINAL_FILE_INFO_A {
|
3768
|
-
pub cbSize: u32,
|
3769
|
-
pub OriginalInfName: [i8; 260],
|
3770
|
-
pub OriginalCatalogName: [i8; 260],
|
3771
|
-
}
|
3772
|
-
#[repr(C)]
|
3773
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3774
|
-
#[derive(Clone, Copy)]
|
3775
|
-
pub struct SP_ORIGINAL_FILE_INFO_W {
|
3776
|
-
pub cbSize: u32,
|
3777
|
-
pub OriginalInfName: [u16; 260],
|
3778
|
-
pub OriginalCatalogName: [u16; 260],
|
3779
|
-
}
|
3780
|
-
#[repr(C, packed(1))]
|
3781
|
-
#[cfg(target_arch = "x86")]
|
3782
|
-
#[derive(Clone, Copy)]
|
3783
|
-
pub struct SP_ORIGINAL_FILE_INFO_W {
|
3784
|
-
pub cbSize: u32,
|
3785
|
-
pub OriginalInfName: [u16; 260],
|
3786
|
-
pub OriginalCatalogName: [u16; 260],
|
3787
|
-
}
|
3788
|
-
#[repr(C)]
|
3789
|
-
#[derive(Clone, Copy)]
|
3790
|
-
pub struct SP_POWERMESSAGEWAKE_PARAMS_A {
|
3791
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3792
|
-
pub PowerMessageWake: [i8; 512],
|
3793
|
-
}
|
3794
|
-
#[repr(C)]
|
3795
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3796
|
-
#[derive(Clone, Copy)]
|
3797
|
-
pub struct SP_POWERMESSAGEWAKE_PARAMS_W {
|
3798
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3799
|
-
pub PowerMessageWake: [u16; 512],
|
3800
|
-
}
|
3801
|
-
#[repr(C, packed(1))]
|
3802
|
-
#[cfg(target_arch = "x86")]
|
3803
|
-
#[derive(Clone, Copy)]
|
3804
|
-
pub struct SP_POWERMESSAGEWAKE_PARAMS_W {
|
3805
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3806
|
-
pub PowerMessageWake: [u16; 512],
|
3807
|
-
}
|
3808
|
-
#[repr(C)]
|
3809
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3810
|
-
#[derive(Clone, Copy)]
|
3811
|
-
pub struct SP_PROPCHANGE_PARAMS {
|
3812
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3813
|
-
pub StateChange: SETUP_DI_STATE_CHANGE,
|
3814
|
-
pub Scope: SETUP_DI_PROPERTY_CHANGE_SCOPE,
|
3815
|
-
pub HwProfile: u32,
|
3816
|
-
}
|
3817
|
-
#[repr(C, packed(1))]
|
3818
|
-
#[cfg(target_arch = "x86")]
|
3819
|
-
#[derive(Clone, Copy)]
|
3820
|
-
pub struct SP_PROPCHANGE_PARAMS {
|
3821
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3822
|
-
pub StateChange: SETUP_DI_STATE_CHANGE,
|
3823
|
-
pub Scope: SETUP_DI_PROPERTY_CHANGE_SCOPE,
|
3824
|
-
pub HwProfile: u32,
|
3825
|
-
}
|
3826
|
-
#[repr(C)]
|
3827
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3828
|
-
#[derive(Clone, Copy)]
|
3829
|
-
pub struct SP_PROPSHEETPAGE_REQUEST {
|
3830
|
-
pub cbSize: u32,
|
3831
|
-
pub PageRequested: u32,
|
3832
|
-
pub DeviceInfoSet: HDEVINFO,
|
3833
|
-
pub DeviceInfoData: *mut SP_DEVINFO_DATA,
|
3834
|
-
}
|
3835
|
-
#[repr(C, packed(1))]
|
3836
|
-
#[cfg(target_arch = "x86")]
|
3837
|
-
#[derive(Clone, Copy)]
|
3838
|
-
pub struct SP_PROPSHEETPAGE_REQUEST {
|
3839
|
-
pub cbSize: u32,
|
3840
|
-
pub PageRequested: u32,
|
3841
|
-
pub DeviceInfoSet: HDEVINFO,
|
3842
|
-
pub DeviceInfoData: *mut SP_DEVINFO_DATA,
|
3843
|
-
}
|
3844
|
-
#[repr(C)]
|
3845
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3846
|
-
#[derive(Clone, Copy)]
|
3847
|
-
pub struct SP_REGISTER_CONTROL_STATUSA {
|
3848
|
-
pub cbSize: u32,
|
3849
|
-
pub FileName: windows_sys::core::PCSTR,
|
3850
|
-
pub Win32Error: u32,
|
3851
|
-
pub FailureCode: u32,
|
3852
|
-
}
|
3853
|
-
#[repr(C, packed(1))]
|
3854
|
-
#[cfg(target_arch = "x86")]
|
3855
|
-
#[derive(Clone, Copy)]
|
3856
|
-
pub struct SP_REGISTER_CONTROL_STATUSA {
|
3857
|
-
pub cbSize: u32,
|
3858
|
-
pub FileName: windows_sys::core::PCSTR,
|
3859
|
-
pub Win32Error: u32,
|
3860
|
-
pub FailureCode: u32,
|
3861
|
-
}
|
3862
|
-
#[repr(C)]
|
3863
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3864
|
-
#[derive(Clone, Copy)]
|
3865
|
-
pub struct SP_REGISTER_CONTROL_STATUSW {
|
3866
|
-
pub cbSize: u32,
|
3867
|
-
pub FileName: windows_sys::core::PCWSTR,
|
3868
|
-
pub Win32Error: u32,
|
3869
|
-
pub FailureCode: u32,
|
3870
|
-
}
|
3871
|
-
#[repr(C, packed(1))]
|
3872
|
-
#[cfg(target_arch = "x86")]
|
3873
|
-
#[derive(Clone, Copy)]
|
3874
|
-
pub struct SP_REGISTER_CONTROL_STATUSW {
|
3875
|
-
pub cbSize: u32,
|
3876
|
-
pub FileName: windows_sys::core::PCWSTR,
|
3877
|
-
pub Win32Error: u32,
|
3878
|
-
pub FailureCode: u32,
|
3879
|
-
}
|
3880
|
-
#[repr(C)]
|
3881
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3882
|
-
#[derive(Clone, Copy)]
|
3883
|
-
pub struct SP_REMOVEDEVICE_PARAMS {
|
3884
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3885
|
-
pub Scope: SETUP_DI_REMOVE_DEVICE_SCOPE,
|
3886
|
-
pub HwProfile: u32,
|
3887
|
-
}
|
3888
|
-
#[repr(C, packed(1))]
|
3889
|
-
#[cfg(target_arch = "x86")]
|
3890
|
-
#[derive(Clone, Copy)]
|
3891
|
-
pub struct SP_REMOVEDEVICE_PARAMS {
|
3892
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3893
|
-
pub Scope: SETUP_DI_REMOVE_DEVICE_SCOPE,
|
3894
|
-
pub HwProfile: u32,
|
3895
|
-
}
|
3896
|
-
#[repr(C)]
|
3897
|
-
#[derive(Clone, Copy)]
|
3898
|
-
pub struct SP_SELECTDEVICE_PARAMS_A {
|
3899
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3900
|
-
pub Title: [i8; 60],
|
3901
|
-
pub Instructions: [i8; 256],
|
3902
|
-
pub ListLabel: [i8; 30],
|
3903
|
-
pub SubTitle: [i8; 256],
|
3904
|
-
pub Reserved: [u8; 2],
|
3905
|
-
}
|
3906
|
-
#[repr(C)]
|
3907
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3908
|
-
#[derive(Clone, Copy)]
|
3909
|
-
pub struct SP_SELECTDEVICE_PARAMS_W {
|
3910
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3911
|
-
pub Title: [u16; 60],
|
3912
|
-
pub Instructions: [u16; 256],
|
3913
|
-
pub ListLabel: [u16; 30],
|
3914
|
-
pub SubTitle: [u16; 256],
|
3915
|
-
}
|
3916
|
-
#[repr(C, packed(1))]
|
3917
|
-
#[cfg(target_arch = "x86")]
|
3918
|
-
#[derive(Clone, Copy)]
|
3919
|
-
pub struct SP_SELECTDEVICE_PARAMS_W {
|
3920
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3921
|
-
pub Title: [u16; 60],
|
3922
|
-
pub Instructions: [u16; 256],
|
3923
|
-
pub ListLabel: [u16; 30],
|
3924
|
-
pub SubTitle: [u16; 256],
|
3925
|
-
}
|
3926
|
-
#[repr(C)]
|
3927
|
-
#[derive(Clone, Copy)]
|
3928
|
-
pub struct SP_TROUBLESHOOTER_PARAMS_A {
|
3929
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3930
|
-
pub ChmFile: [i8; 260],
|
3931
|
-
pub HtmlTroubleShooter: [i8; 260],
|
3932
|
-
}
|
3933
|
-
#[repr(C)]
|
3934
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3935
|
-
#[derive(Clone, Copy)]
|
3936
|
-
pub struct SP_TROUBLESHOOTER_PARAMS_W {
|
3937
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3938
|
-
pub ChmFile: [u16; 260],
|
3939
|
-
pub HtmlTroubleShooter: [u16; 260],
|
3940
|
-
}
|
3941
|
-
#[repr(C, packed(1))]
|
3942
|
-
#[cfg(target_arch = "x86")]
|
3943
|
-
#[derive(Clone, Copy)]
|
3944
|
-
pub struct SP_TROUBLESHOOTER_PARAMS_W {
|
3945
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3946
|
-
pub ChmFile: [u16; 260],
|
3947
|
-
pub HtmlTroubleShooter: [u16; 260],
|
3948
|
-
}
|
3949
|
-
#[repr(C)]
|
3950
|
-
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))]
|
3951
|
-
#[derive(Clone, Copy)]
|
3952
|
-
pub struct SP_UNREMOVEDEVICE_PARAMS {
|
3953
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3954
|
-
pub Scope: u32,
|
3955
|
-
pub HwProfile: u32,
|
3956
|
-
}
|
3957
|
-
#[repr(C, packed(1))]
|
3958
|
-
#[cfg(target_arch = "x86")]
|
3959
|
-
#[derive(Clone, Copy)]
|
3960
|
-
pub struct SP_UNREMOVEDEVICE_PARAMS {
|
3961
|
-
pub ClassInstallHeader: SP_CLASSINSTALL_HEADER,
|
3962
|
-
pub Scope: u32,
|
3963
|
-
pub HwProfile: u32,
|
3964
|
-
}
|
3965
|
-
pub type PCM_NOTIFY_CALLBACK = Option<unsafe extern "system" fn(hnotify: HCMNOTIFICATION, context: *const core::ffi::c_void, action: CM_NOTIFY_ACTION, eventdata: *const CM_NOTIFY_EVENT_DATA, eventdatasize: u32) -> u32>;
|
3966
|
-
pub type PDETECT_PROGRESS_NOTIFY = Option<unsafe extern "system" fn(progressnotifyparam: *const core::ffi::c_void, detectcomplete: u32) -> super::super::Foundation::BOOL>;
|
3967
|
-
pub type PSP_DETSIG_CMPPROC = Option<unsafe extern "system" fn(deviceinfoset: HDEVINFO, newdevicedata: *const SP_DEVINFO_DATA, existingdevicedata: *const SP_DEVINFO_DATA, comparecontext: *const core::ffi::c_void) -> u32>;
|
3968
|
-
pub type PSP_FILE_CALLBACK_A = Option<unsafe extern "system" fn(context: *const core::ffi::c_void, notification: u32, param1: usize, param2: usize) -> u32>;
|
3969
|
-
pub type PSP_FILE_CALLBACK_W = Option<unsafe extern "system" fn(context: *const core::ffi::c_void, notification: u32, param1: usize, param2: usize) -> u32>;
|