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,4311 +0,0 @@
|
|
1
|
-
windows_targets::link!("wlanapi.dll" "system" fn WFDCancelOpenSession(hsessionhandle : super::super::Foundation:: HANDLE) -> u32);
|
2
|
-
windows_targets::link!("wlanapi.dll" "system" fn WFDCloseHandle(hclienthandle : super::super::Foundation:: HANDLE) -> u32);
|
3
|
-
windows_targets::link!("wlanapi.dll" "system" fn WFDCloseSession(hsessionhandle : super::super::Foundation:: HANDLE) -> u32);
|
4
|
-
windows_targets::link!("wlanapi.dll" "system" fn WFDOpenHandle(dwclientversion : u32, pdwnegotiatedversion : *mut u32, phclienthandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
5
|
-
windows_targets::link!("wlanapi.dll" "system" fn WFDOpenLegacySession(hclienthandle : super::super::Foundation:: HANDLE, plegacymacaddress : *const *const u8, phsessionhandle : *mut super::super::Foundation:: HANDLE, pguidsessioninterface : *mut windows_sys::core::GUID) -> u32);
|
6
|
-
windows_targets::link!("wlanapi.dll" "system" fn WFDStartOpenSession(hclienthandle : super::super::Foundation:: HANDLE, pdeviceaddress : *const *const u8, pvcontext : *const core::ffi::c_void, pfncallback : WFD_OPEN_SESSION_COMPLETE_CALLBACK, phsessionhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
7
|
-
windows_targets::link!("wlanapi.dll" "system" fn WFDUpdateDeviceVisibility(pdeviceaddress : *const *const u8) -> u32);
|
8
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanAllocateMemory(dwmemorysize : u32) -> *mut core::ffi::c_void);
|
9
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanCloseHandle(hclienthandle : super::super::Foundation:: HANDLE, preserved : *const core::ffi::c_void) -> u32);
|
10
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
11
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanConnect(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, pconnectionparameters : *const WLAN_CONNECTION_PARAMETERS, preserved : *const core::ffi::c_void) -> u32);
|
12
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
13
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanConnect2(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, pconnectionparameters : *const WLAN_CONNECTION_PARAMETERS_V2, preserved : *const core::ffi::c_void) -> u32);
|
14
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanDeleteProfile(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, strprofilename : windows_sys::core::PCWSTR, preserved : *const core::ffi::c_void) -> u32);
|
15
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanDeviceServiceCommand(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, pdeviceserviceguid : *const windows_sys::core::GUID, dwopcode : u32, dwinbuffersize : u32, pinbuffer : *const core::ffi::c_void, dwoutbuffersize : u32, poutbuffer : *mut core::ffi::c_void, pdwbytesreturned : *mut u32) -> u32);
|
16
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanDisconnect(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, preserved : *const core::ffi::c_void) -> u32);
|
17
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanEnumInterfaces(hclienthandle : super::super::Foundation:: HANDLE, preserved : *const core::ffi::c_void, ppinterfacelist : *mut *mut WLAN_INTERFACE_INFO_LIST) -> u32);
|
18
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanExtractPsdIEDataList(hclienthandle : super::super::Foundation:: HANDLE, dwiedatasize : u32, prawiedata : *const u8, strformat : windows_sys::core::PCWSTR, preserved : *const core::ffi::c_void, pppsdiedatalist : *mut *mut WLAN_RAW_DATA_LIST) -> u32);
|
19
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanFreeMemory(pmemory : *const core::ffi::c_void));
|
20
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanGetAvailableNetworkList(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, dwflags : u32, preserved : *const core::ffi::c_void, ppavailablenetworklist : *mut *mut WLAN_AVAILABLE_NETWORK_LIST) -> u32);
|
21
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanGetAvailableNetworkList2(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, dwflags : u32, preserved : *const core::ffi::c_void, ppavailablenetworklist : *mut *mut WLAN_AVAILABLE_NETWORK_LIST_V2) -> u32);
|
22
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanGetFilterList(hclienthandle : super::super::Foundation:: HANDLE, wlanfilterlisttype : WLAN_FILTER_LIST_TYPE, preserved : *const core::ffi::c_void, ppnetworklist : *mut *mut DOT11_NETWORK_LIST) -> u32);
|
23
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanGetInterfaceCapability(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, preserved : *const core::ffi::c_void, ppcapability : *mut *mut WLAN_INTERFACE_CAPABILITY) -> u32);
|
24
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanGetNetworkBssList(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, pdot11ssid : *const DOT11_SSID, dot11bsstype : DOT11_BSS_TYPE, bsecurityenabled : super::super::Foundation:: BOOL, preserved : *const core::ffi::c_void, ppwlanbsslist : *mut *mut WLAN_BSS_LIST) -> u32);
|
25
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanGetProfile(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, strprofilename : windows_sys::core::PCWSTR, preserved : *const core::ffi::c_void, pstrprofilexml : *mut windows_sys::core::PWSTR, pdwflags : *mut u32, pdwgrantedaccess : *mut u32) -> u32);
|
26
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanGetProfileCustomUserData(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, strprofilename : windows_sys::core::PCWSTR, preserved : *const core::ffi::c_void, pdwdatasize : *mut u32, ppdata : *mut *mut u8) -> u32);
|
27
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanGetProfileList(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, preserved : *const core::ffi::c_void, ppprofilelist : *mut *mut WLAN_PROFILE_INFO_LIST) -> u32);
|
28
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanGetSecuritySettings(hclienthandle : super::super::Foundation:: HANDLE, securableobject : WLAN_SECURABLE_OBJECT, pvaluetype : *mut WLAN_OPCODE_VALUE_TYPE, pstrcurrentsddl : *mut windows_sys::core::PWSTR, pdwgrantedaccess : *mut u32) -> u32);
|
29
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanGetSupportedDeviceServices(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, ppdevsvcguidlist : *mut *mut WLAN_DEVICE_SERVICE_GUID_LIST) -> u32);
|
30
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkForceStart(hclienthandle : super::super::Foundation:: HANDLE, pfailreason : *mut WLAN_HOSTED_NETWORK_REASON, pvreserved : *const core::ffi::c_void) -> u32);
|
31
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkForceStop(hclienthandle : super::super::Foundation:: HANDLE, pfailreason : *mut WLAN_HOSTED_NETWORK_REASON, pvreserved : *const core::ffi::c_void) -> u32);
|
32
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkInitSettings(hclienthandle : super::super::Foundation:: HANDLE, pfailreason : *mut WLAN_HOSTED_NETWORK_REASON, pvreserved : *const core::ffi::c_void) -> u32);
|
33
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkQueryProperty(hclienthandle : super::super::Foundation:: HANDLE, opcode : WLAN_HOSTED_NETWORK_OPCODE, pdwdatasize : *mut u32, ppvdata : *mut *mut core::ffi::c_void, pwlanopcodevaluetype : *mut WLAN_OPCODE_VALUE_TYPE, pvreserved : *const core::ffi::c_void) -> u32);
|
34
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkQuerySecondaryKey(hclienthandle : super::super::Foundation:: HANDLE, pdwkeylength : *mut u32, ppuckeydata : *mut *mut u8, pbispassphrase : *mut super::super::Foundation:: BOOL, pbpersistent : *mut super::super::Foundation:: BOOL, pfailreason : *mut WLAN_HOSTED_NETWORK_REASON, pvreserved : *const core::ffi::c_void) -> u32);
|
35
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkQueryStatus(hclienthandle : super::super::Foundation:: HANDLE, ppwlanhostednetworkstatus : *mut *mut WLAN_HOSTED_NETWORK_STATUS, pvreserved : *const core::ffi::c_void) -> u32);
|
36
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkRefreshSecuritySettings(hclienthandle : super::super::Foundation:: HANDLE, pfailreason : *mut WLAN_HOSTED_NETWORK_REASON, pvreserved : *const core::ffi::c_void) -> u32);
|
37
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkSetProperty(hclienthandle : super::super::Foundation:: HANDLE, opcode : WLAN_HOSTED_NETWORK_OPCODE, dwdatasize : u32, pvdata : *const core::ffi::c_void, pfailreason : *mut WLAN_HOSTED_NETWORK_REASON, pvreserved : *const core::ffi::c_void) -> u32);
|
38
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkSetSecondaryKey(hclienthandle : super::super::Foundation:: HANDLE, dwkeylength : u32, puckeydata : *const u8, bispassphrase : super::super::Foundation:: BOOL, bpersistent : super::super::Foundation:: BOOL, pfailreason : *mut WLAN_HOSTED_NETWORK_REASON, pvreserved : *const core::ffi::c_void) -> u32);
|
39
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkStartUsing(hclienthandle : super::super::Foundation:: HANDLE, pfailreason : *mut WLAN_HOSTED_NETWORK_REASON, pvreserved : *const core::ffi::c_void) -> u32);
|
40
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanHostedNetworkStopUsing(hclienthandle : super::super::Foundation:: HANDLE, pfailreason : *mut WLAN_HOSTED_NETWORK_REASON, pvreserved : *const core::ffi::c_void) -> u32);
|
41
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanIhvControl(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, r#type : WLAN_IHV_CONTROL_TYPE, dwinbuffersize : u32, pinbuffer : *const core::ffi::c_void, dwoutbuffersize : u32, poutbuffer : *mut core::ffi::c_void, pdwbytesreturned : *mut u32) -> u32);
|
42
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanOpenHandle(dwclientversion : u32, preserved : *const core::ffi::c_void, pdwnegotiatedversion : *mut u32, phclienthandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
43
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanQueryAutoConfigParameter(hclienthandle : super::super::Foundation:: HANDLE, opcode : WLAN_AUTOCONF_OPCODE, preserved : *const core::ffi::c_void, pdwdatasize : *mut u32, ppdata : *mut *mut core::ffi::c_void, pwlanopcodevaluetype : *mut WLAN_OPCODE_VALUE_TYPE) -> u32);
|
44
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanQueryInterface(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, opcode : WLAN_INTF_OPCODE, preserved : *const core::ffi::c_void, pdwdatasize : *mut u32, ppdata : *mut *mut core::ffi::c_void, pwlanopcodevaluetype : *mut WLAN_OPCODE_VALUE_TYPE) -> u32);
|
45
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanReasonCodeToString(dwreasoncode : u32, dwbuffersize : u32, pstringbuffer : windows_sys::core::PCWSTR, preserved : *const core::ffi::c_void) -> u32);
|
46
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanRegisterDeviceServiceNotification(hclienthandle : super::super::Foundation:: HANDLE, pdevsvcguidlist : *const WLAN_DEVICE_SERVICE_GUID_LIST) -> u32);
|
47
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanRegisterNotification(hclienthandle : super::super::Foundation:: HANDLE, dwnotifsource : WLAN_NOTIFICATION_SOURCES, bignoreduplicate : super::super::Foundation:: BOOL, funccallback : WLAN_NOTIFICATION_CALLBACK, pcallbackcontext : *const core::ffi::c_void, preserved : *const core::ffi::c_void, pdwprevnotifsource : *mut u32) -> u32);
|
48
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanRegisterVirtualStationNotification(hclienthandle : super::super::Foundation:: HANDLE, bregister : super::super::Foundation:: BOOL, preserved : *const core::ffi::c_void) -> u32);
|
49
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanRenameProfile(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, stroldprofilename : windows_sys::core::PCWSTR, strnewprofilename : windows_sys::core::PCWSTR, preserved : *const core::ffi::c_void) -> u32);
|
50
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSaveTemporaryProfile(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, strprofilename : windows_sys::core::PCWSTR, stralluserprofilesecurity : windows_sys::core::PCWSTR, dwflags : u32, boverwrite : super::super::Foundation:: BOOL, preserved : *const core::ffi::c_void) -> u32);
|
51
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanScan(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, pdot11ssid : *const DOT11_SSID, piedata : *const WLAN_RAW_DATA, preserved : *const core::ffi::c_void) -> u32);
|
52
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetAutoConfigParameter(hclienthandle : super::super::Foundation:: HANDLE, opcode : WLAN_AUTOCONF_OPCODE, dwdatasize : u32, pdata : *const core::ffi::c_void, preserved : *const core::ffi::c_void) -> u32);
|
53
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetFilterList(hclienthandle : super::super::Foundation:: HANDLE, wlanfilterlisttype : WLAN_FILTER_LIST_TYPE, pnetworklist : *const DOT11_NETWORK_LIST, preserved : *const core::ffi::c_void) -> u32);
|
54
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetInterface(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, opcode : WLAN_INTF_OPCODE, dwdatasize : u32, pdata : *const core::ffi::c_void, preserved : *const core::ffi::c_void) -> u32);
|
55
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetProfile(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, dwflags : u32, strprofilexml : windows_sys::core::PCWSTR, stralluserprofilesecurity : windows_sys::core::PCWSTR, boverwrite : super::super::Foundation:: BOOL, preserved : *const core::ffi::c_void, pdwreasoncode : *mut u32) -> u32);
|
56
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetProfileCustomUserData(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, strprofilename : windows_sys::core::PCWSTR, dwdatasize : u32, pdata : *const u8, preserved : *const core::ffi::c_void) -> u32);
|
57
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
58
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetProfileEapUserData(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, strprofilename : windows_sys::core::PCWSTR, eaptype : super::super::Security::ExtensibleAuthenticationProtocol:: EAP_METHOD_TYPE, dwflags : WLAN_SET_EAPHOST_FLAGS, dweapuserdatasize : u32, pbeapuserdata : *const u8, preserved : *const core::ffi::c_void) -> u32);
|
59
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetProfileEapXmlUserData(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, strprofilename : windows_sys::core::PCWSTR, dwflags : WLAN_SET_EAPHOST_FLAGS, streapxmluserdata : windows_sys::core::PCWSTR, preserved : *const core::ffi::c_void) -> u32);
|
60
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetProfileList(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, dwitems : u32, strprofilenames : *const windows_sys::core::PCWSTR, preserved : *const core::ffi::c_void) -> u32);
|
61
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetProfilePosition(hclienthandle : super::super::Foundation:: HANDLE, pinterfaceguid : *const windows_sys::core::GUID, strprofilename : windows_sys::core::PCWSTR, dwposition : u32, preserved : *const core::ffi::c_void) -> u32);
|
62
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetPsdIEDataList(hclienthandle : super::super::Foundation:: HANDLE, strformat : windows_sys::core::PCWSTR, ppsdiedatalist : *const WLAN_RAW_DATA_LIST, preserved : *const core::ffi::c_void) -> u32);
|
63
|
-
windows_targets::link!("wlanapi.dll" "system" fn WlanSetSecuritySettings(hclienthandle : super::super::Foundation:: HANDLE, securableobject : WLAN_SECURABLE_OBJECT, strmodifiedsddl : windows_sys::core::PCWSTR) -> u32);
|
64
|
-
windows_targets::link!("wlanui.dll" "system" fn WlanUIEditProfile(dwclientversion : u32, wstrprofilename : windows_sys::core::PCWSTR, pinterfaceguid : *const windows_sys::core::GUID, hwnd : super::super::Foundation:: HWND, wlstartpage : WL_DISPLAY_PAGES, preserved : *const core::ffi::c_void, pwlanreasoncode : *mut u32) -> u32);
|
65
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
66
|
-
pub const DEVPKEY_InfraCast_AccessPointBssid: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 19 };
|
67
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
68
|
-
pub const DEVPKEY_InfraCast_ChallengeAep: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 21 };
|
69
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
70
|
-
pub const DEVPKEY_InfraCast_DevnodeAep: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 23 };
|
71
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
72
|
-
pub const DEVPKEY_InfraCast_HostName_ResolutionMode: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 25 };
|
73
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
74
|
-
pub const DEVPKEY_InfraCast_PinSupported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 29 };
|
75
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
76
|
-
pub const DEVPKEY_InfraCast_RtspTcpConnectionParametersSupported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 30 };
|
77
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
78
|
-
pub const DEVPKEY_InfraCast_SinkHostName: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 20 };
|
79
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
80
|
-
pub const DEVPKEY_InfraCast_SinkIpAddress: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 26 };
|
81
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
82
|
-
pub const DEVPKEY_InfraCast_StreamSecuritySupported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 18 };
|
83
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
84
|
-
pub const DEVPKEY_InfraCast_Supported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 17 };
|
85
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
86
|
-
pub const DEVPKEY_PciDevice_AERCapabilityPresent: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 17 };
|
87
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
88
|
-
pub const DEVPKEY_PciDevice_AcsCapabilityRegister: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 32 };
|
89
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
90
|
-
pub const DEVPKEY_PciDevice_AcsCompatibleUpHierarchy: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 31 };
|
91
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
92
|
-
pub const DEVPKEY_PciDevice_AcsSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 29 };
|
93
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
94
|
-
pub const DEVPKEY_PciDevice_AriSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 30 };
|
95
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
96
|
-
pub const DEVPKEY_PciDevice_AtomicsSupported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 35 };
|
97
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
98
|
-
pub const DEVPKEY_PciDevice_AtsSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 33 };
|
99
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
100
|
-
pub const DEVPKEY_PciDevice_BarTypes: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 16 };
|
101
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
102
|
-
pub const DEVPKEY_PciDevice_BaseClass: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 3 };
|
103
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
104
|
-
pub const DEVPKEY_PciDevice_Correctable_Error_Mask: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 21 };
|
105
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
106
|
-
pub const DEVPKEY_PciDevice_CurrentLinkSpeed: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 9 };
|
107
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
108
|
-
pub const DEVPKEY_PciDevice_CurrentLinkWidth: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 10 };
|
109
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
110
|
-
pub const DEVPKEY_PciDevice_CurrentPayloadSize: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 6 };
|
111
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
112
|
-
pub const DEVPKEY_PciDevice_CurrentSpeedAndMode: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 2 };
|
113
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
114
|
-
pub const DEVPKEY_PciDevice_D3ColdSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 38 };
|
115
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
116
|
-
pub const DEVPKEY_PciDevice_DeviceType: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 1 };
|
117
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
118
|
-
pub const DEVPKEY_PciDevice_ECRC_Errors: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 22 };
|
119
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
120
|
-
pub const DEVPKEY_PciDevice_Error_Reporting: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 23 };
|
121
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
122
|
-
pub const DEVPKEY_PciDevice_ExpressSpecVersion: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 13 };
|
123
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
124
|
-
pub const DEVPKEY_PciDevice_FirmwareErrorHandling: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 18 };
|
125
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
126
|
-
pub const DEVPKEY_PciDevice_InterruptMessageMaximum: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 15 };
|
127
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
128
|
-
pub const DEVPKEY_PciDevice_InterruptSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 14 };
|
129
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
130
|
-
pub const DEVPKEY_PciDevice_Label_Id: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 27 };
|
131
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
132
|
-
pub const DEVPKEY_PciDevice_Label_String: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 28 };
|
133
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
134
|
-
pub const DEVPKEY_PciDevice_MaxLinkSpeed: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 11 };
|
135
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
136
|
-
pub const DEVPKEY_PciDevice_MaxLinkWidth: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 12 };
|
137
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
138
|
-
pub const DEVPKEY_PciDevice_MaxPayloadSize: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 7 };
|
139
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
140
|
-
pub const DEVPKEY_PciDevice_MaxReadRequestSize: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 8 };
|
141
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
142
|
-
pub const DEVPKEY_PciDevice_OnPostPath: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 37 };
|
143
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
144
|
-
pub const DEVPKEY_PciDevice_ParentSerialNumber: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 45 };
|
145
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
146
|
-
pub const DEVPKEY_PciDevice_ProgIf: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 5 };
|
147
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
148
|
-
pub const DEVPKEY_PciDevice_RequiresReservedMemoryRegion: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 34 };
|
149
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
150
|
-
pub const DEVPKEY_PciDevice_RootError_Reporting: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 24 };
|
151
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
152
|
-
pub const DEVPKEY_PciDevice_S0WakeupSupported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 25 };
|
153
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
154
|
-
pub const DEVPKEY_PciDevice_SerialNumber: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 40 };
|
155
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
156
|
-
pub const DEVPKEY_PciDevice_SriovSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 26 };
|
157
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
158
|
-
pub const DEVPKEY_PciDevice_SubClass: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 4 };
|
159
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
160
|
-
pub const DEVPKEY_PciDevice_SupportedLinkSubState: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 36 };
|
161
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
162
|
-
pub const DEVPKEY_PciDevice_Uncorrectable_Error_Mask: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 19 };
|
163
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
164
|
-
pub const DEVPKEY_PciDevice_Uncorrectable_Error_Severity: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 20 };
|
165
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
166
|
-
pub const DEVPKEY_PciDevice_UsbComponentRelation: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 43 };
|
167
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
168
|
-
pub const DEVPKEY_PciDevice_UsbDvsecPortSpecificAttributes: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 42 };
|
169
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
170
|
-
pub const DEVPKEY_PciDevice_UsbDvsecPortType: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 41 };
|
171
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
172
|
-
pub const DEVPKEY_PciDevice_UsbHostRouterName: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x3ab22e31_8264_4b4e_9af5_a8d2d8e33e62), pid: 44 };
|
173
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
174
|
-
pub const DEVPKEY_PciRootBus_ASPMSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 8 };
|
175
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
176
|
-
pub const DEVPKEY_PciRootBus_ClockPowerManagementSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 9 };
|
177
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
178
|
-
pub const DEVPKEY_PciRootBus_CurrentSpeedAndMode: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 2 };
|
179
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
180
|
-
pub const DEVPKEY_PciRootBus_DeviceIDMessagingCapable: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 4 };
|
181
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
182
|
-
pub const DEVPKEY_PciRootBus_ExtendedConfigAvailable: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 6 };
|
183
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
184
|
-
pub const DEVPKEY_PciRootBus_ExtendedPCIConfigOpRegionSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 7 };
|
185
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
186
|
-
pub const DEVPKEY_PciRootBus_MSISupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 11 };
|
187
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
188
|
-
pub const DEVPKEY_PciRootBus_NativePciExpressControl: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 17 };
|
189
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
190
|
-
pub const DEVPKEY_PciRootBus_PCIExpressAERControl: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 15 };
|
191
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
192
|
-
pub const DEVPKEY_PciRootBus_PCIExpressCapabilityControl: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 16 };
|
193
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
194
|
-
pub const DEVPKEY_PciRootBus_PCIExpressNativeHotPlugControl: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 12 };
|
195
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
196
|
-
pub const DEVPKEY_PciRootBus_PCIExpressNativePMEControl: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 14 };
|
197
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
198
|
-
pub const DEVPKEY_PciRootBus_PCISegmentGroupsSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 10 };
|
199
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
200
|
-
pub const DEVPKEY_PciRootBus_SHPCNativeHotPlugControl: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 13 };
|
201
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
202
|
-
pub const DEVPKEY_PciRootBus_SecondaryBusWidth: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 5 };
|
203
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
204
|
-
pub const DEVPKEY_PciRootBus_SecondaryInterface: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 1 };
|
205
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
206
|
-
pub const DEVPKEY_PciRootBus_SupportedSpeedsAndModes: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 3 };
|
207
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
208
|
-
pub const DEVPKEY_PciRootBus_SystemMsiSupport: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xd817fc28_793e_4b9e_9970_469d8be63073), pid: 18 };
|
209
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
210
|
-
pub const DEVPKEY_WiFiDirectServices_AdvertisementId: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x31b37743_7c5e_4005_93e6_e953f92b82e9), pid: 5 };
|
211
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
212
|
-
pub const DEVPKEY_WiFiDirectServices_RequestServiceInformation: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x31b37743_7c5e_4005_93e6_e953f92b82e9), pid: 7 };
|
213
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
214
|
-
pub const DEVPKEY_WiFiDirectServices_ServiceAddress: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x31b37743_7c5e_4005_93e6_e953f92b82e9), pid: 2 };
|
215
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
216
|
-
pub const DEVPKEY_WiFiDirectServices_ServiceConfigMethods: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x31b37743_7c5e_4005_93e6_e953f92b82e9), pid: 6 };
|
217
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
218
|
-
pub const DEVPKEY_WiFiDirectServices_ServiceInformation: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x31b37743_7c5e_4005_93e6_e953f92b82e9), pid: 4 };
|
219
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
220
|
-
pub const DEVPKEY_WiFiDirectServices_ServiceName: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x31b37743_7c5e_4005_93e6_e953f92b82e9), pid: 3 };
|
221
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
222
|
-
pub const DEVPKEY_WiFiDirect_DeviceAddress: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 1 };
|
223
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
224
|
-
pub const DEVPKEY_WiFiDirect_DeviceAddressCopy: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 13 };
|
225
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
226
|
-
pub const DEVPKEY_WiFiDirect_FoundWsbService: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 24 };
|
227
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
228
|
-
pub const DEVPKEY_WiFiDirect_GroupId: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 4 };
|
229
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
230
|
-
pub const DEVPKEY_WiFiDirect_InformationElements: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 12 };
|
231
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
232
|
-
pub const DEVPKEY_WiFiDirect_InterfaceAddress: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 2 };
|
233
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
234
|
-
pub const DEVPKEY_WiFiDirect_InterfaceGuid: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 3 };
|
235
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
236
|
-
pub const DEVPKEY_WiFiDirect_IsConnected: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 5 };
|
237
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
238
|
-
pub const DEVPKEY_WiFiDirect_IsDMGCapable: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 22 };
|
239
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
240
|
-
pub const DEVPKEY_WiFiDirect_IsLegacyDevice: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 7 };
|
241
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
242
|
-
pub const DEVPKEY_WiFiDirect_IsMiracastLCPSupported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 9 };
|
243
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
244
|
-
pub const DEVPKEY_WiFiDirect_IsRecentlyAssociated: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 14 };
|
245
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
246
|
-
pub const DEVPKEY_WiFiDirect_IsVisible: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 6 };
|
247
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
248
|
-
pub const DEVPKEY_WiFiDirect_LinkQuality: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 28 };
|
249
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
250
|
-
pub const DEVPKEY_WiFiDirect_MiracastVersion: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 8 };
|
251
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
252
|
-
pub const DEVPKEY_WiFiDirect_Miracast_SessionMgmtControlPort: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 31 };
|
253
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
254
|
-
pub const DEVPKEY_WiFiDirect_NoMiracastAutoProject: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 16 };
|
255
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
256
|
-
pub const DEVPKEY_WiFiDirect_RtspTcpConnectionParametersSupported: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 32 };
|
257
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
258
|
-
pub const DEVPKEY_WiFiDirect_Service_Aeps: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 15 };
|
259
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
260
|
-
pub const DEVPKEY_WiFiDirect_Services: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 10 };
|
261
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
262
|
-
pub const DEVPKEY_WiFiDirect_SupportedChannelList: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 11 };
|
263
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
264
|
-
pub const DEVPKEY_WiFiDirect_TransientAssociation: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x1506935d_e3e7_450f_8637_82233ebe5f6e), pid: 27 };
|
265
|
-
#[cfg(feature = "Win32_Devices_Properties")]
|
266
|
-
pub const DEVPKEY_WiFi_InterfaceGuid: super::super::Devices::Properties::DEVPROPKEY = super::super::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0xef1167eb_cbfc_4341_a568_a7c91a68982c), pid: 2 };
|
267
|
-
pub const DISCOVERY_FILTER_BITMASK_ANY: u32 = 15u32;
|
268
|
-
pub const DISCOVERY_FILTER_BITMASK_DEVICE: u32 = 1u32;
|
269
|
-
pub const DISCOVERY_FILTER_BITMASK_GO: u32 = 2u32;
|
270
|
-
pub const DOT11EXT_PSK_MAX_LENGTH: u32 = 64u32;
|
271
|
-
pub const DOT11_ADDITIONAL_IE_REVISION_1: u32 = 1u32;
|
272
|
-
pub const DOT11_ADHOC_AUTH_ALGO_80211_OPEN: DOT11_ADHOC_AUTH_ALGORITHM = 1i32;
|
273
|
-
pub const DOT11_ADHOC_AUTH_ALGO_INVALID: DOT11_ADHOC_AUTH_ALGORITHM = -1i32;
|
274
|
-
pub const DOT11_ADHOC_AUTH_ALGO_RSNA_PSK: DOT11_ADHOC_AUTH_ALGORITHM = 7i32;
|
275
|
-
pub const DOT11_ADHOC_CIPHER_ALGO_CCMP: DOT11_ADHOC_CIPHER_ALGORITHM = 4i32;
|
276
|
-
pub const DOT11_ADHOC_CIPHER_ALGO_INVALID: DOT11_ADHOC_CIPHER_ALGORITHM = -1i32;
|
277
|
-
pub const DOT11_ADHOC_CIPHER_ALGO_NONE: DOT11_ADHOC_CIPHER_ALGORITHM = 0i32;
|
278
|
-
pub const DOT11_ADHOC_CIPHER_ALGO_WEP: DOT11_ADHOC_CIPHER_ALGORITHM = 257i32;
|
279
|
-
pub const DOT11_ADHOC_CONNECT_FAIL_DOMAIN_MISMATCH: DOT11_ADHOC_CONNECT_FAIL_REASON = 0i32;
|
280
|
-
pub const DOT11_ADHOC_CONNECT_FAIL_OTHER: DOT11_ADHOC_CONNECT_FAIL_REASON = 2i32;
|
281
|
-
pub const DOT11_ADHOC_CONNECT_FAIL_PASSPHRASE_MISMATCH: DOT11_ADHOC_CONNECT_FAIL_REASON = 1i32;
|
282
|
-
pub const DOT11_ADHOC_NETWORK_CONNECTION_STATUS_CONNECTED: DOT11_ADHOC_NETWORK_CONNECTION_STATUS = 13i32;
|
283
|
-
pub const DOT11_ADHOC_NETWORK_CONNECTION_STATUS_CONNECTING: DOT11_ADHOC_NETWORK_CONNECTION_STATUS = 12i32;
|
284
|
-
pub const DOT11_ADHOC_NETWORK_CONNECTION_STATUS_DISCONNECTED: DOT11_ADHOC_NETWORK_CONNECTION_STATUS = 11i32;
|
285
|
-
pub const DOT11_ADHOC_NETWORK_CONNECTION_STATUS_FORMED: DOT11_ADHOC_NETWORK_CONNECTION_STATUS = 14i32;
|
286
|
-
pub const DOT11_ADHOC_NETWORK_CONNECTION_STATUS_INVALID: DOT11_ADHOC_NETWORK_CONNECTION_STATUS = 0i32;
|
287
|
-
pub const DOT11_ANQP_QUERY_COMPLETE_PARAMETERS_REVISION_1: u32 = 1u32;
|
288
|
-
pub const DOT11_ASSOCIATION_COMPLETION_PARAMETERS_REVISION_1: u32 = 1u32;
|
289
|
-
pub const DOT11_ASSOCIATION_COMPLETION_PARAMETERS_REVISION_2: u32 = 2u32;
|
290
|
-
pub const DOT11_ASSOCIATION_INFO_LIST_REVISION_1: u32 = 1u32;
|
291
|
-
pub const DOT11_ASSOCIATION_PARAMS_REVISION_1: u32 = 1u32;
|
292
|
-
pub const DOT11_ASSOCIATION_START_PARAMETERS_REVISION_1: u32 = 1u32;
|
293
|
-
pub const DOT11_ASSOC_ERROR_SOURCE_OS: u32 = 0u32;
|
294
|
-
pub const DOT11_ASSOC_ERROR_SOURCE_OTHER: u32 = 255u32;
|
295
|
-
pub const DOT11_ASSOC_ERROR_SOURCE_REMOTE: u32 = 1u32;
|
296
|
-
pub const DOT11_ASSOC_STATUS_SUCCESS: u32 = 0u32;
|
297
|
-
pub const DOT11_AUTH_ALGORITHM_LIST_REVISION_1: u32 = 1u32;
|
298
|
-
pub const DOT11_AUTH_ALGO_80211_OPEN: DOT11_AUTH_ALGORITHM = 1i32;
|
299
|
-
pub const DOT11_AUTH_ALGO_80211_SHARED_KEY: DOT11_AUTH_ALGORITHM = 2i32;
|
300
|
-
pub const DOT11_AUTH_ALGO_IHV_END: DOT11_AUTH_ALGORITHM = -1i32;
|
301
|
-
pub const DOT11_AUTH_ALGO_IHV_START: DOT11_AUTH_ALGORITHM = -2147483648i32;
|
302
|
-
pub const DOT11_AUTH_ALGO_MICHAEL: u32 = 1u32;
|
303
|
-
pub const DOT11_AUTH_ALGO_OWE: DOT11_AUTH_ALGORITHM = 10i32;
|
304
|
-
pub const DOT11_AUTH_ALGO_RSNA: DOT11_AUTH_ALGORITHM = 6i32;
|
305
|
-
pub const DOT11_AUTH_ALGO_RSNA_PSK: DOT11_AUTH_ALGORITHM = 7i32;
|
306
|
-
pub const DOT11_AUTH_ALGO_WPA: DOT11_AUTH_ALGORITHM = 3i32;
|
307
|
-
pub const DOT11_AUTH_ALGO_WPA3: DOT11_AUTH_ALGORITHM = 8i32;
|
308
|
-
pub const DOT11_AUTH_ALGO_WPA3_ENT: DOT11_AUTH_ALGORITHM = 11i32;
|
309
|
-
pub const DOT11_AUTH_ALGO_WPA3_ENT_192: DOT11_AUTH_ALGORITHM = 8i32;
|
310
|
-
pub const DOT11_AUTH_ALGO_WPA3_SAE: DOT11_AUTH_ALGORITHM = 9i32;
|
311
|
-
pub const DOT11_AUTH_ALGO_WPA_NONE: DOT11_AUTH_ALGORITHM = 5i32;
|
312
|
-
pub const DOT11_AUTH_ALGO_WPA_PSK: DOT11_AUTH_ALGORITHM = 4i32;
|
313
|
-
pub const DOT11_AUTH_CIPHER_PAIR_LIST_REVISION_1: u32 = 1u32;
|
314
|
-
pub const DOT11_AVAILABLE_CHANNEL_LIST_REVISION_1: u32 = 1u32;
|
315
|
-
pub const DOT11_AVAILABLE_FREQUENCY_LIST_REVISION_1: u32 = 1u32;
|
316
|
-
pub const DOT11_BSSID_LIST_REVISION_1: u32 = 1u32;
|
317
|
-
pub const DOT11_BSS_ENTRY_BYTE_ARRAY_REVISION_1: u32 = 1u32;
|
318
|
-
pub const DOT11_CAN_SUSTAIN_AP_PARAMETERS_REVISION_1: u32 = 1u32;
|
319
|
-
pub const DOT11_CAN_SUSTAIN_AP_REASON_IHV_END: u32 = 4294967295u32;
|
320
|
-
pub const DOT11_CAN_SUSTAIN_AP_REASON_IHV_START: u32 = 4278190080u32;
|
321
|
-
pub const DOT11_CAPABILITY_CHANNEL_AGILITY: u32 = 128u32;
|
322
|
-
pub const DOT11_CAPABILITY_DSSSOFDM: u32 = 8192u32;
|
323
|
-
pub const DOT11_CAPABILITY_INFO_CF_POLLABLE: u32 = 4u32;
|
324
|
-
pub const DOT11_CAPABILITY_INFO_CF_POLL_REQ: u32 = 8u32;
|
325
|
-
pub const DOT11_CAPABILITY_INFO_ESS: u32 = 1u32;
|
326
|
-
pub const DOT11_CAPABILITY_INFO_IBSS: u32 = 2u32;
|
327
|
-
pub const DOT11_CAPABILITY_INFO_PRIVACY: u32 = 16u32;
|
328
|
-
pub const DOT11_CAPABILITY_PBCC: u32 = 64u32;
|
329
|
-
pub const DOT11_CAPABILITY_SHORT_PREAMBLE: u32 = 32u32;
|
330
|
-
pub const DOT11_CAPABILITY_SHORT_SLOT_TIME: u32 = 1024u32;
|
331
|
-
pub const DOT11_CCA_MODE_CS_ONLY: u32 = 2u32;
|
332
|
-
pub const DOT11_CCA_MODE_CS_WITH_TIMER: u32 = 8u32;
|
333
|
-
pub const DOT11_CCA_MODE_ED_ONLY: u32 = 1u32;
|
334
|
-
pub const DOT11_CCA_MODE_ED_and_CS: u32 = 4u32;
|
335
|
-
pub const DOT11_CCA_MODE_HRCS_AND_ED: u32 = 16u32;
|
336
|
-
pub const DOT11_CIPHER_ALGORITHM_LIST_REVISION_1: u32 = 1u32;
|
337
|
-
pub const DOT11_CIPHER_ALGO_BIP: DOT11_CIPHER_ALGORITHM = 6i32;
|
338
|
-
pub const DOT11_CIPHER_ALGO_BIP_CMAC_256: DOT11_CIPHER_ALGORITHM = 13i32;
|
339
|
-
pub const DOT11_CIPHER_ALGO_BIP_GMAC_128: DOT11_CIPHER_ALGORITHM = 11i32;
|
340
|
-
pub const DOT11_CIPHER_ALGO_BIP_GMAC_256: DOT11_CIPHER_ALGORITHM = 12i32;
|
341
|
-
pub const DOT11_CIPHER_ALGO_CCMP: DOT11_CIPHER_ALGORITHM = 4i32;
|
342
|
-
pub const DOT11_CIPHER_ALGO_CCMP_256: DOT11_CIPHER_ALGORITHM = 10i32;
|
343
|
-
pub const DOT11_CIPHER_ALGO_GCMP: DOT11_CIPHER_ALGORITHM = 8i32;
|
344
|
-
pub const DOT11_CIPHER_ALGO_GCMP_256: DOT11_CIPHER_ALGORITHM = 9i32;
|
345
|
-
pub const DOT11_CIPHER_ALGO_IHV_END: DOT11_CIPHER_ALGORITHM = -1i32;
|
346
|
-
pub const DOT11_CIPHER_ALGO_IHV_START: DOT11_CIPHER_ALGORITHM = -2147483648i32;
|
347
|
-
pub const DOT11_CIPHER_ALGO_NONE: DOT11_CIPHER_ALGORITHM = 0i32;
|
348
|
-
pub const DOT11_CIPHER_ALGO_RSN_USE_GROUP: DOT11_CIPHER_ALGORITHM = 256i32;
|
349
|
-
pub const DOT11_CIPHER_ALGO_TKIP: DOT11_CIPHER_ALGORITHM = 2i32;
|
350
|
-
pub const DOT11_CIPHER_ALGO_WEP: DOT11_CIPHER_ALGORITHM = 257i32;
|
351
|
-
pub const DOT11_CIPHER_ALGO_WEP104: DOT11_CIPHER_ALGORITHM = 5i32;
|
352
|
-
pub const DOT11_CIPHER_ALGO_WEP40: DOT11_CIPHER_ALGORITHM = 1i32;
|
353
|
-
pub const DOT11_CIPHER_ALGO_WPA_USE_GROUP: DOT11_CIPHER_ALGORITHM = 256i32;
|
354
|
-
pub const DOT11_CIPHER_DEFAULT_KEY_VALUE_REVISION_1: u32 = 1u32;
|
355
|
-
pub const DOT11_CIPHER_KEY_MAPPING_KEY_VALUE_BYTE_ARRAY_REVISION_1: u32 = 1u32;
|
356
|
-
pub const DOT11_CONF_ALGO_TKIP: u32 = 2u32;
|
357
|
-
pub const DOT11_CONF_ALGO_WEP_RC4: u32 = 1u32;
|
358
|
-
pub const DOT11_CONNECTION_COMPLETION_PARAMETERS_REVISION_1: u32 = 1u32;
|
359
|
-
pub const DOT11_CONNECTION_START_PARAMETERS_REVISION_1: u32 = 1u32;
|
360
|
-
pub const DOT11_CONNECTION_STATUS_SUCCESS: u32 = 0u32;
|
361
|
-
pub const DOT11_COUNTRY_OR_REGION_STRING_LIST_REVISION_1: u32 = 1u32;
|
362
|
-
pub const DOT11_DATA_RATE_MAPPING_TABLE_REVISION_1: u32 = 1u32;
|
363
|
-
pub const DOT11_DEVICE_ENTRY_BYTE_ARRAY_REVISION_1: u32 = 1u32;
|
364
|
-
pub const DOT11_DIR_BOTH: DOT11_DIRECTION = 3i32;
|
365
|
-
pub const DOT11_DIR_INBOUND: DOT11_DIRECTION = 1i32;
|
366
|
-
pub const DOT11_DIR_OUTBOUND: DOT11_DIRECTION = 2i32;
|
367
|
-
pub const DOT11_DISASSOCIATE_PEER_REQUEST_REVISION_1: u32 = 1u32;
|
368
|
-
pub const DOT11_DISASSOCIATION_PARAMETERS_REVISION_1: u32 = 1u32;
|
369
|
-
pub const DOT11_DS_CHANGED: DOT11_DS_INFO = 0i32;
|
370
|
-
pub const DOT11_DS_UNCHANGED: DOT11_DS_INFO = 1i32;
|
371
|
-
pub const DOT11_DS_UNKNOWN: DOT11_DS_INFO = 2i32;
|
372
|
-
pub const DOT11_ENCAP_802_1H: u32 = 2u32;
|
373
|
-
pub const DOT11_ENCAP_RFC_1042: u32 = 1u32;
|
374
|
-
pub const DOT11_EXEMPT_ALWAYS: u32 = 1u32;
|
375
|
-
pub const DOT11_EXEMPT_BOTH: u32 = 3u32;
|
376
|
-
pub const DOT11_EXEMPT_MULTICAST: u32 = 2u32;
|
377
|
-
pub const DOT11_EXEMPT_NO_EXEMPTION: u32 = 0u32;
|
378
|
-
pub const DOT11_EXEMPT_ON_KEY_MAPPING_KEY_UNAVAILABLE: u32 = 2u32;
|
379
|
-
pub const DOT11_EXEMPT_UNICAST: u32 = 1u32;
|
380
|
-
pub const DOT11_EXTAP_ATTRIBUTES_REVISION_1: u32 = 1u32;
|
381
|
-
pub const DOT11_EXTAP_RECV_CONTEXT_REVISION_1: u32 = 1u32;
|
382
|
-
pub const DOT11_EXTAP_SEND_CONTEXT_REVISION_1: u32 = 1u32;
|
383
|
-
pub const DOT11_EXTSTA_ATTRIBUTES_REVISION_1: u32 = 1u32;
|
384
|
-
pub const DOT11_EXTSTA_ATTRIBUTES_REVISION_2: u32 = 2u32;
|
385
|
-
pub const DOT11_EXTSTA_ATTRIBUTES_REVISION_3: u32 = 3u32;
|
386
|
-
pub const DOT11_EXTSTA_ATTRIBUTES_REVISION_4: u32 = 4u32;
|
387
|
-
pub const DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_CERTIFIED: u32 = 2u32;
|
388
|
-
pub const DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_OID_SUPPORTED: u32 = 1u32;
|
389
|
-
pub const DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_RESERVED: u32 = 12u32;
|
390
|
-
pub const DOT11_EXTSTA_CAPABILITY_REVISION_1: u32 = 1u32;
|
391
|
-
pub const DOT11_EXTSTA_RECV_CONTEXT_REVISION_1: u32 = 1u32;
|
392
|
-
pub const DOT11_EXTSTA_SEND_CONTEXT_REVISION_1: u32 = 1u32;
|
393
|
-
pub const DOT11_FLAGS_80211B_CHANNEL_AGILITY: u32 = 4u32;
|
394
|
-
pub const DOT11_FLAGS_80211B_PBCC: u32 = 2u32;
|
395
|
-
pub const DOT11_FLAGS_80211B_SHORT_PREAMBLE: u32 = 1u32;
|
396
|
-
pub const DOT11_FLAGS_80211G_BARKER_PREAMBLE_MODE: u32 = 128u32;
|
397
|
-
pub const DOT11_FLAGS_80211G_DSSS_OFDM: u32 = 16u32;
|
398
|
-
pub const DOT11_FLAGS_80211G_NON_ERP_PRESENT: u32 = 64u32;
|
399
|
-
pub const DOT11_FLAGS_80211G_USE_PROTECTION: u32 = 32u32;
|
400
|
-
pub const DOT11_FLAGS_PS_ON: u32 = 8u32;
|
401
|
-
pub const DOT11_FREQUENCY_BANDS_LOWER: u32 = 1u32;
|
402
|
-
pub const DOT11_FREQUENCY_BANDS_MIDDLE: u32 = 2u32;
|
403
|
-
pub const DOT11_FREQUENCY_BANDS_UPPER: u32 = 4u32;
|
404
|
-
pub const DOT11_GO_NEGOTIATION_CONFIRMATION_SEND_COMPLETE_PARAMETERS_REVISION_1: u32 = 1u32;
|
405
|
-
pub const DOT11_GO_NEGOTIATION_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1: u32 = 1u32;
|
406
|
-
pub const DOT11_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1: u32 = 1u32;
|
407
|
-
pub const DOT11_HESSID_LENGTH: u32 = 6u32;
|
408
|
-
pub const DOT11_HR_CCA_MODE_CS_AND_ED: u32 = 4u32;
|
409
|
-
pub const DOT11_HR_CCA_MODE_CS_ONLY: u32 = 2u32;
|
410
|
-
pub const DOT11_HR_CCA_MODE_CS_WITH_TIMER: u32 = 8u32;
|
411
|
-
pub const DOT11_HR_CCA_MODE_ED_ONLY: u32 = 1u32;
|
412
|
-
pub const DOT11_HR_CCA_MODE_HRCS_AND_ED: u32 = 16u32;
|
413
|
-
pub const DOT11_HW_DEFRAGMENTATION_SUPPORTED: u32 = 8u32;
|
414
|
-
pub const DOT11_HW_FRAGMENTATION_SUPPORTED: u32 = 4u32;
|
415
|
-
pub const DOT11_HW_MSDU_AUTH_SUPPORTED_RX: u32 = 32u32;
|
416
|
-
pub const DOT11_HW_MSDU_AUTH_SUPPORTED_TX: u32 = 16u32;
|
417
|
-
pub const DOT11_HW_WEP_SUPPORTED_RX: u32 = 2u32;
|
418
|
-
pub const DOT11_HW_WEP_SUPPORTED_TX: u32 = 1u32;
|
419
|
-
pub const DOT11_IBSS_PARAMS_REVISION_1: u32 = 1u32;
|
420
|
-
pub const DOT11_INCOMING_ASSOC_COMPLETION_PARAMETERS_REVISION_1: u32 = 1u32;
|
421
|
-
pub const DOT11_INCOMING_ASSOC_DECISION_REVISION_1: u32 = 1u32;
|
422
|
-
pub const DOT11_INCOMING_ASSOC_DECISION_REVISION_2: u32 = 2u32;
|
423
|
-
pub const DOT11_INCOMING_ASSOC_REQUEST_RECEIVED_PARAMETERS_REVISION_1: u32 = 1u32;
|
424
|
-
pub const DOT11_INCOMING_ASSOC_STARTED_PARAMETERS_REVISION_1: u32 = 1u32;
|
425
|
-
pub const DOT11_INVALID_CHANNEL_NUMBER: u32 = 0u32;
|
426
|
-
pub const DOT11_INVITATION_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1: u32 = 1u32;
|
427
|
-
pub const DOT11_INVITATION_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1: u32 = 1u32;
|
428
|
-
pub const DOT11_LINK_QUALITY_PARAMETERS_REVISION_1: u32 = 1u32;
|
429
|
-
pub const DOT11_MAC_ADDRESS_LIST_REVISION_1: u32 = 1u32;
|
430
|
-
pub const DOT11_MAC_PARAMETERS_REVISION_1: u32 = 1u32;
|
431
|
-
pub const DOT11_MANUFACTURING_CALLBACK_REVISION_1: u32 = 1u32;
|
432
|
-
pub const DOT11_MANUFACTURING_SELF_TEST_TYPE_BT_COEXISTENCE: DOT11_MANUFACTURING_SELF_TEST_TYPE = 3i32;
|
433
|
-
pub const DOT11_MANUFACTURING_SELF_TEST_TYPE_INTERFACE: DOT11_MANUFACTURING_SELF_TEST_TYPE = 1i32;
|
434
|
-
pub const DOT11_MANUFACTURING_SELF_TEST_TYPE_RF_INTERFACE: DOT11_MANUFACTURING_SELF_TEST_TYPE = 2i32;
|
435
|
-
pub const DOT11_MANUFACTURING_TEST_REVISION_1: u32 = 1u32;
|
436
|
-
pub const DOT11_MAX_CHANNEL_HINTS: u32 = 4u32;
|
437
|
-
pub const DOT11_MAX_NUM_DEFAULT_KEY: u32 = 4u32;
|
438
|
-
pub const DOT11_MAX_NUM_DEFAULT_KEY_MFP: u32 = 6u32;
|
439
|
-
pub const DOT11_MAX_NUM_OF_FRAGMENTS: u32 = 16u32;
|
440
|
-
pub const DOT11_MAX_PDU_SIZE: u32 = 2346u32;
|
441
|
-
pub const DOT11_MAX_REQUESTED_SERVICE_INFORMATION_LENGTH: u32 = 255u32;
|
442
|
-
pub const DOT11_MIN_PDU_SIZE: u32 = 256u32;
|
443
|
-
pub const DOT11_MPDU_MAX_LENGTH_INDICATION_REVISION_1: u32 = 1u32;
|
444
|
-
pub const DOT11_MSONEX_FAILURE: DOT11_MSONEX_RESULT = 1i32;
|
445
|
-
pub const DOT11_MSONEX_IN_PROGRESS: DOT11_MSONEX_RESULT = 2i32;
|
446
|
-
pub const DOT11_MSONEX_SUCCESS: DOT11_MSONEX_RESULT = 0i32;
|
447
|
-
pub const DOT11_NLO_FLAG_SCAN_AT_SYSTEM_RESUME: u32 = 4u32;
|
448
|
-
pub const DOT11_NLO_FLAG_SCAN_ON_AOAC_PLATFORM: u32 = 2u32;
|
449
|
-
pub const DOT11_NLO_FLAG_STOP_NLO_INDICATION: u32 = 1u32;
|
450
|
-
pub const DOT11_OFFLOAD_NETWORK_LIST_REVISION_1: u32 = 1u32;
|
451
|
-
pub const DOT11_OFFLOAD_NETWORK_STATUS_PARAMETERS_REVISION_1: u32 = 1u32;
|
452
|
-
pub const DOT11_OI_MAX_LENGTH: u32 = 5u32;
|
453
|
-
pub const DOT11_OI_MIN_LENGTH: u32 = 3u32;
|
454
|
-
pub const DOT11_OPERATION_MODE_AP: u32 = 2u32;
|
455
|
-
pub const DOT11_OPERATION_MODE_EXTENSIBLE_AP: u32 = 8u32;
|
456
|
-
pub const DOT11_OPERATION_MODE_EXTENSIBLE_STATION: u32 = 4u32;
|
457
|
-
pub const DOT11_OPERATION_MODE_MANUFACTURING: u32 = 1073741824u32;
|
458
|
-
pub const DOT11_OPERATION_MODE_NETWORK_MONITOR: u32 = 2147483648u32;
|
459
|
-
pub const DOT11_OPERATION_MODE_STATION: u32 = 1u32;
|
460
|
-
pub const DOT11_OPERATION_MODE_UNKNOWN: u32 = 0u32;
|
461
|
-
pub const DOT11_OPERATION_MODE_WFD_CLIENT: u32 = 64u32;
|
462
|
-
pub const DOT11_OPERATION_MODE_WFD_DEVICE: u32 = 16u32;
|
463
|
-
pub const DOT11_OPERATION_MODE_WFD_GROUP_OWNER: u32 = 32u32;
|
464
|
-
pub const DOT11_PACKET_TYPE_ALL_MULTICAST_CTRL: u32 = 4096u32;
|
465
|
-
pub const DOT11_PACKET_TYPE_ALL_MULTICAST_DATA: u32 = 16384u32;
|
466
|
-
pub const DOT11_PACKET_TYPE_ALL_MULTICAST_MGMT: u32 = 8192u32;
|
467
|
-
pub const DOT11_PACKET_TYPE_BROADCAST_CTRL: u32 = 64u32;
|
468
|
-
pub const DOT11_PACKET_TYPE_BROADCAST_DATA: u32 = 256u32;
|
469
|
-
pub const DOT11_PACKET_TYPE_BROADCAST_MGMT: u32 = 128u32;
|
470
|
-
pub const DOT11_PACKET_TYPE_DIRECTED_CTRL: u32 = 1u32;
|
471
|
-
pub const DOT11_PACKET_TYPE_DIRECTED_DATA: u32 = 4u32;
|
472
|
-
pub const DOT11_PACKET_TYPE_DIRECTED_MGMT: u32 = 2u32;
|
473
|
-
pub const DOT11_PACKET_TYPE_MULTICAST_CTRL: u32 = 8u32;
|
474
|
-
pub const DOT11_PACKET_TYPE_MULTICAST_DATA: u32 = 32u32;
|
475
|
-
pub const DOT11_PACKET_TYPE_MULTICAST_MGMT: u32 = 16u32;
|
476
|
-
pub const DOT11_PACKET_TYPE_PROMISCUOUS_CTRL: u32 = 512u32;
|
477
|
-
pub const DOT11_PACKET_TYPE_PROMISCUOUS_DATA: u32 = 2048u32;
|
478
|
-
pub const DOT11_PACKET_TYPE_PROMISCUOUS_MGMT: u32 = 1024u32;
|
479
|
-
pub const DOT11_PEER_INFO_LIST_REVISION_1: u32 = 1u32;
|
480
|
-
pub const DOT11_PHY_ATTRIBUTES_REVISION_1: u32 = 1u32;
|
481
|
-
pub const DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS_REVISION_1: u32 = 1u32;
|
482
|
-
pub const DOT11_PHY_ID_LIST_REVISION_1: u32 = 1u32;
|
483
|
-
pub const DOT11_PHY_STATE_PARAMETERS_REVISION_1: u32 = 1u32;
|
484
|
-
pub const DOT11_PHY_TYPE_LIST_REVISION_1: u32 = 1u32;
|
485
|
-
pub const DOT11_PMKID_CANDIDATE_LIST_PARAMETERS_REVISION_1: u32 = 1u32;
|
486
|
-
pub const DOT11_PMKID_LIST_REVISION_1: u32 = 1u32;
|
487
|
-
pub const DOT11_PORT_STATE_NOTIFICATION_REVISION_1: u32 = 1u32;
|
488
|
-
pub const DOT11_POWER_MGMT_AUTO_MODE_ENABLED_REVISION_1: u32 = 1u32;
|
489
|
-
pub const DOT11_POWER_MGMT_MODE_STATUS_INFO_REVISION_1: u32 = 1u32;
|
490
|
-
pub const DOT11_POWER_SAVE_LEVEL_FAST_PSP: u32 = 2u32;
|
491
|
-
pub const DOT11_POWER_SAVE_LEVEL_MAX_PSP: u32 = 1u32;
|
492
|
-
pub const DOT11_POWER_SAVING_FAST_PSP: u32 = 8u32;
|
493
|
-
pub const DOT11_POWER_SAVING_MAXIMUM_LEVEL: u32 = 24u32;
|
494
|
-
pub const DOT11_POWER_SAVING_MAX_PSP: u32 = 16u32;
|
495
|
-
pub const DOT11_POWER_SAVING_NO_POWER_SAVING: u32 = 0u32;
|
496
|
-
pub const DOT11_PRIORITY_CONTENTION: u32 = 0u32;
|
497
|
-
pub const DOT11_PRIORITY_CONTENTION_FREE: u32 = 1u32;
|
498
|
-
pub const DOT11_PRIVACY_EXEMPTION_LIST_REVISION_1: u32 = 1u32;
|
499
|
-
pub const DOT11_PROVISION_DISCOVERY_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1: u32 = 1u32;
|
500
|
-
pub const DOT11_PROVISION_DISCOVERY_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1: u32 = 1u32;
|
501
|
-
pub const DOT11_PSD_IE_MAX_DATA_SIZE: u32 = 240u32;
|
502
|
-
pub const DOT11_PSD_IE_MAX_ENTRY_NUMBER: u32 = 5u32;
|
503
|
-
pub const DOT11_QOS_PARAMS_REVISION_1: u32 = 1u32;
|
504
|
-
pub const DOT11_RATE_SET_MAX_LENGTH: u32 = 126u32;
|
505
|
-
pub const DOT11_RECEIVED_GO_NEGOTIATION_CONFIRMATION_PARAMETERS_REVISION_1: u32 = 1u32;
|
506
|
-
pub const DOT11_RECEIVED_GO_NEGOTIATION_REQUEST_PARAMETERS_REVISION_1: u32 = 1u32;
|
507
|
-
pub const DOT11_RECEIVED_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1: u32 = 1u32;
|
508
|
-
pub const DOT11_RECEIVED_INVITATION_REQUEST_PARAMETERS_REVISION_1: u32 = 1u32;
|
509
|
-
pub const DOT11_RECEIVED_INVITATION_RESPONSE_PARAMETERS_REVISION_1: u32 = 1u32;
|
510
|
-
pub const DOT11_RECEIVED_PROVISION_DISCOVERY_REQUEST_PARAMETERS_REVISION_1: u32 = 1u32;
|
511
|
-
pub const DOT11_RECEIVED_PROVISION_DISCOVERY_RESPONSE_PARAMETERS_REVISION_1: u32 = 1u32;
|
512
|
-
pub const DOT11_RECV_CONTEXT_REVISION_1: u32 = 1u32;
|
513
|
-
pub const DOT11_REG_DOMAIN_DOC: u32 = 32u32;
|
514
|
-
pub const DOT11_REG_DOMAIN_ETSI: u32 = 48u32;
|
515
|
-
pub const DOT11_REG_DOMAIN_FCC: u32 = 16u32;
|
516
|
-
pub const DOT11_REG_DOMAIN_FRANCE: u32 = 50u32;
|
517
|
-
pub const DOT11_REG_DOMAIN_MKK: u32 = 64u32;
|
518
|
-
pub const DOT11_REG_DOMAIN_OTHER: u32 = 0u32;
|
519
|
-
pub const DOT11_REG_DOMAIN_SPAIN: u32 = 49u32;
|
520
|
-
pub const DOT11_ROAMING_COMPLETION_PARAMETERS_REVISION_1: u32 = 1u32;
|
521
|
-
pub const DOT11_ROAMING_START_PARAMETERS_REVISION_1: u32 = 1u32;
|
522
|
-
pub const DOT11_SEND_CONTEXT_REVISION_1: u32 = 1u32;
|
523
|
-
pub const DOT11_SEND_GO_NEGOTIATION_CONFIRMATION_PARAMETERS_REVISION_1: u32 = 1u32;
|
524
|
-
pub const DOT11_SEND_GO_NEGOTIATION_REQUEST_PARAMETERS_REVISION_1: u32 = 1u32;
|
525
|
-
pub const DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1: u32 = 1u32;
|
526
|
-
pub const DOT11_SEND_INVITATION_REQUEST_PARAMETERS_REVISION_1: u32 = 1u32;
|
527
|
-
pub const DOT11_SEND_INVITATION_RESPONSE_PARAMETERS_REVISION_1: u32 = 1u32;
|
528
|
-
pub const DOT11_SEND_PROVISION_DISCOVERY_REQUEST_PARAMETERS_REVISION_1: u32 = 1u32;
|
529
|
-
pub const DOT11_SEND_PROVISION_DISCOVERY_RESPONSE_PARAMETERS_REVISION_1: u32 = 1u32;
|
530
|
-
pub const DOT11_SERVICE_CLASS_REORDERABLE_MULTICAST: u32 = 0u32;
|
531
|
-
pub const DOT11_SERVICE_CLASS_STRICTLY_ORDERED: u32 = 1u32;
|
532
|
-
pub const DOT11_SSID_LIST_REVISION_1: u32 = 1u32;
|
533
|
-
pub const DOT11_SSID_MAX_LENGTH: u32 = 32u32;
|
534
|
-
pub const DOT11_STATISTICS_REVISION_1: u32 = 1u32;
|
535
|
-
pub const DOT11_STATUS_AP_JOIN_CONFIRM: u32 = 5u32;
|
536
|
-
pub const DOT11_STATUS_AUTH_FAILED: u32 = 131072u32;
|
537
|
-
pub const DOT11_STATUS_AUTH_NOT_VERIFIED: u32 = 32768u32;
|
538
|
-
pub const DOT11_STATUS_AUTH_VERIFIED: u32 = 65536u32;
|
539
|
-
pub const DOT11_STATUS_ENCRYPTION_FAILED: u32 = 512u32;
|
540
|
-
pub const DOT11_STATUS_EXCESSIVE_DATA_LENGTH: u32 = 256u32;
|
541
|
-
pub const DOT11_STATUS_GENERATE_AUTH_FAILED: u32 = 16384u32;
|
542
|
-
pub const DOT11_STATUS_ICV_VERIFIED: u32 = 2048u32;
|
543
|
-
pub const DOT11_STATUS_JOIN_CONFIRM: u32 = 2u32;
|
544
|
-
pub const DOT11_STATUS_MPDU_MAX_LENGTH_CHANGED: u32 = 6u32;
|
545
|
-
pub const DOT11_STATUS_PACKET_NOT_REASSEMBLED: u32 = 8192u32;
|
546
|
-
pub const DOT11_STATUS_PACKET_REASSEMBLED: u32 = 4096u32;
|
547
|
-
pub const DOT11_STATUS_PS_LIFETIME_EXPIRED: u32 = 262144u32;
|
548
|
-
pub const DOT11_STATUS_RESET_CONFIRM: u32 = 4u32;
|
549
|
-
pub const DOT11_STATUS_RETRY_LIMIT_EXCEEDED: u32 = 2u32;
|
550
|
-
pub const DOT11_STATUS_SCAN_CONFIRM: u32 = 1u32;
|
551
|
-
pub const DOT11_STATUS_START_CONFIRM: u32 = 3u32;
|
552
|
-
pub const DOT11_STATUS_SUCCESS: u32 = 1u32;
|
553
|
-
pub const DOT11_STATUS_UNAVAILABLE_BSS: u32 = 128u32;
|
554
|
-
pub const DOT11_STATUS_UNAVAILABLE_PRIORITY: u32 = 16u32;
|
555
|
-
pub const DOT11_STATUS_UNAVAILABLE_SERVICE_CLASS: u32 = 32u32;
|
556
|
-
pub const DOT11_STATUS_UNSUPPORTED_PRIORITY: u32 = 4u32;
|
557
|
-
pub const DOT11_STATUS_UNSUPPORTED_SERVICE_CLASS: u32 = 8u32;
|
558
|
-
pub const DOT11_STATUS_WEP_KEY_UNAVAILABLE: u32 = 1024u32;
|
559
|
-
pub const DOT11_STATUS_XMIT_MSDU_TIMER_EXPIRED: u32 = 64u32;
|
560
|
-
pub const DOT11_STOP_AP_PARAMETERS_REVISION_1: u32 = 1u32;
|
561
|
-
pub const DOT11_STOP_AP_REASON_AP_ACTIVE: u32 = 3u32;
|
562
|
-
pub const DOT11_STOP_AP_REASON_CHANNEL_NOT_AVAILABLE: u32 = 2u32;
|
563
|
-
pub const DOT11_STOP_AP_REASON_FREQUENCY_NOT_AVAILABLE: u32 = 1u32;
|
564
|
-
pub const DOT11_STOP_AP_REASON_IHV_END: u32 = 4294967295u32;
|
565
|
-
pub const DOT11_STOP_AP_REASON_IHV_START: u32 = 4278190080u32;
|
566
|
-
pub const DOT11_TKIPMIC_FAILURE_PARAMETERS_REVISION_1: u32 = 1u32;
|
567
|
-
pub const DOT11_VWIFI_ATTRIBUTES_REVISION_1: u32 = 1u32;
|
568
|
-
pub const DOT11_VWIFI_COMBINATION_REVISION_1: u32 = 1u32;
|
569
|
-
pub const DOT11_VWIFI_COMBINATION_REVISION_2: u32 = 2u32;
|
570
|
-
pub const DOT11_VWIFI_COMBINATION_REVISION_3: u32 = 3u32;
|
571
|
-
pub const DOT11_WFD_ADDITIONAL_IE_REVISION_1: u32 = 1u32;
|
572
|
-
pub const DOT11_WFD_APS2_SERVICE_TYPE_MAX_LENGTH: u32 = 21u32;
|
573
|
-
pub const DOT11_WFD_ASP2_INSTANCE_NAME_MAX_LENGTH: u32 = 63u32;
|
574
|
-
pub const DOT11_WFD_ATTRIBUTES_REVISION_1: u32 = 1u32;
|
575
|
-
pub const DOT11_WFD_DEVICE_AUTO_AVAILABILITY: u32 = 16u32;
|
576
|
-
pub const DOT11_WFD_DEVICE_CAPABILITY_CONCURRENT_OPERATION: u32 = 4u32;
|
577
|
-
pub const DOT11_WFD_DEVICE_CAPABILITY_CONFIG_REVISION_1: u32 = 1u32;
|
578
|
-
pub const DOT11_WFD_DEVICE_CAPABILITY_P2P_CLIENT_DISCOVERABILITY: u32 = 2u32;
|
579
|
-
pub const DOT11_WFD_DEVICE_CAPABILITY_P2P_DEVICE_LIMIT: u32 = 16u32;
|
580
|
-
pub const DOT11_WFD_DEVICE_CAPABILITY_P2P_INFRASTRUCTURE_MANAGED: u32 = 8u32;
|
581
|
-
pub const DOT11_WFD_DEVICE_CAPABILITY_P2P_INVITATION_PROCEDURE: u32 = 32u32;
|
582
|
-
pub const DOT11_WFD_DEVICE_CAPABILITY_RESERVED_6: u32 = 64u32;
|
583
|
-
pub const DOT11_WFD_DEVICE_CAPABILITY_RESERVED_7: u32 = 128u32;
|
584
|
-
pub const DOT11_WFD_DEVICE_CAPABILITY_SERVICE_DISCOVERY: u32 = 1u32;
|
585
|
-
pub const DOT11_WFD_DEVICE_HIGH_AVAILABILITY: u32 = 24u32;
|
586
|
-
pub const DOT11_WFD_DEVICE_INFO_REVISION_1: u32 = 1u32;
|
587
|
-
pub const DOT11_WFD_DEVICE_LISTEN_CHANNEL_REVISION_1: u32 = 1u32;
|
588
|
-
pub const DOT11_WFD_DEVICE_NOT_DISCOVERABLE: u32 = 0u32;
|
589
|
-
pub const DOT11_WFD_DISCOVER_COMPLETE_MAX_LIST_SIZE: u32 = 128u32;
|
590
|
-
pub const DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS_REVISION_1: u32 = 1u32;
|
591
|
-
pub const DOT11_WFD_DISCOVER_REQUEST_REVISION_1: u32 = 1u32;
|
592
|
-
pub const DOT11_WFD_GROUP_CAPABILITY_CROSS_CONNECTION_SUPPORTED: u32 = 16u32;
|
593
|
-
pub const DOT11_WFD_GROUP_CAPABILITY_EAPOL_KEY_IP_ADDRESS_ALLOCATION_SUPPORTED: u32 = 128u32;
|
594
|
-
pub const DOT11_WFD_GROUP_CAPABILITY_GROUP_LIMIT_REACHED: u32 = 4u32;
|
595
|
-
pub const DOT11_WFD_GROUP_CAPABILITY_GROUP_OWNER: u32 = 1u32;
|
596
|
-
pub const DOT11_WFD_GROUP_CAPABILITY_INTRABSS_DISTRIBUTION_SUPPORTED: u32 = 8u32;
|
597
|
-
pub const DOT11_WFD_GROUP_CAPABILITY_IN_GROUP_FORMATION: u32 = 64u32;
|
598
|
-
pub const DOT11_WFD_GROUP_CAPABILITY_NONE: u32 = 0u32;
|
599
|
-
pub const DOT11_WFD_GROUP_CAPABILITY_PERSISTENT_GROUP: u32 = 2u32;
|
600
|
-
pub const DOT11_WFD_GROUP_CAPABILITY_PERSISTENT_RECONNECT_SUPPORTED: u32 = 32u32;
|
601
|
-
pub const DOT11_WFD_GROUP_CAPABILITY_RESERVED_7: u32 = 128u32;
|
602
|
-
pub const DOT11_WFD_GROUP_JOIN_PARAMETERS_REVISION_1: u32 = 1u32;
|
603
|
-
pub const DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_REVISION_1: u32 = 1u32;
|
604
|
-
pub const DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_REVISION_2: u32 = 2u32;
|
605
|
-
pub const DOT11_WFD_GROUP_START_PARAMETERS_REVISION_1: u32 = 1u32;
|
606
|
-
pub const DOT11_WFD_MINOR_REASON_DISASSOCIATED_FROM_WLAN_CROSS_CONNECTION_POLICY: u32 = 1u32;
|
607
|
-
pub const DOT11_WFD_MINOR_REASON_DISASSOCIATED_INFRASTRUCTURE_MANAGED_POLICY: u32 = 4u32;
|
608
|
-
pub const DOT11_WFD_MINOR_REASON_DISASSOCIATED_NOT_MANAGED_INFRASTRUCTURE_CAPABLE: u32 = 2u32;
|
609
|
-
pub const DOT11_WFD_MINOR_REASON_DISASSOCIATED_WFD_COEXISTENCE_POLICY: u32 = 3u32;
|
610
|
-
pub const DOT11_WFD_MINOR_REASON_SUCCESS: u32 = 0u32;
|
611
|
-
pub const DOT11_WFD_SECONDARY_DEVICE_TYPE_LIST_REVISION_1: u32 = 1u32;
|
612
|
-
pub const DOT11_WFD_SERVICE_INFORMATION_MAX_LENGTH: u32 = 65535u32;
|
613
|
-
pub const DOT11_WFD_SERVICE_NAME_MAX_LENGTH: u32 = 255u32;
|
614
|
-
pub const DOT11_WFD_SESSION_INFO_MAX_LENGTH: u32 = 144u32;
|
615
|
-
pub const DOT11_WFD_STATUS_FAILED_INCOMPATIBLE_PARAMETERS: u32 = 2u32;
|
616
|
-
pub const DOT11_WFD_STATUS_FAILED_INCOMPATIBLE_PROVISIONING_METHOD: u32 = 10u32;
|
617
|
-
pub const DOT11_WFD_STATUS_FAILED_INFORMATION_IS_UNAVAILABLE: u32 = 1u32;
|
618
|
-
pub const DOT11_WFD_STATUS_FAILED_INVALID_PARAMETERS: u32 = 4u32;
|
619
|
-
pub const DOT11_WFD_STATUS_FAILED_LIMIT_REACHED: u32 = 3u32;
|
620
|
-
pub const DOT11_WFD_STATUS_FAILED_MATCHING_MAX_INTENT: u32 = 9u32;
|
621
|
-
pub const DOT11_WFD_STATUS_FAILED_NO_COMMON_CHANNELS: u32 = 7u32;
|
622
|
-
pub const DOT11_WFD_STATUS_FAILED_PREVIOUS_PROTOCOL_ERROR: u32 = 6u32;
|
623
|
-
pub const DOT11_WFD_STATUS_FAILED_REJECTED_BY_USER: u32 = 11u32;
|
624
|
-
pub const DOT11_WFD_STATUS_FAILED_UNABLE_TO_ACCOMODATE_REQUEST: u32 = 5u32;
|
625
|
-
pub const DOT11_WFD_STATUS_FAILED_UNKNOWN_WFD_GROUP: u32 = 8u32;
|
626
|
-
pub const DOT11_WFD_STATUS_SUCCESS: u32 = 0u32;
|
627
|
-
pub const DOT11_WFD_STATUS_SUCCESS_ACCEPTED_BY_USER: u32 = 12u32;
|
628
|
-
pub const DOT11_WME_PACKET: u32 = 256u32;
|
629
|
-
pub const DOT11_WPS_CONFIG_METHOD_DISPLAY: DOT11_WPS_CONFIG_METHOD = 8i32;
|
630
|
-
pub const DOT11_WPS_CONFIG_METHOD_KEYPAD: DOT11_WPS_CONFIG_METHOD = 256i32;
|
631
|
-
pub const DOT11_WPS_CONFIG_METHOD_NFC_INTERFACE: DOT11_WPS_CONFIG_METHOD = 64i32;
|
632
|
-
pub const DOT11_WPS_CONFIG_METHOD_NFC_TAG: DOT11_WPS_CONFIG_METHOD = 32i32;
|
633
|
-
pub const DOT11_WPS_CONFIG_METHOD_NULL: DOT11_WPS_CONFIG_METHOD = 0i32;
|
634
|
-
pub const DOT11_WPS_CONFIG_METHOD_PUSHBUTTON: DOT11_WPS_CONFIG_METHOD = 128i32;
|
635
|
-
pub const DOT11_WPS_CONFIG_METHOD_WFDS_DEFAULT: DOT11_WPS_CONFIG_METHOD = 4096i32;
|
636
|
-
pub const DOT11_WPS_DEVICE_NAME_MAX_LENGTH: u32 = 32u32;
|
637
|
-
pub const DOT11_WPS_MAX_MODEL_NAME_LENGTH: u32 = 32u32;
|
638
|
-
pub const DOT11_WPS_MAX_MODEL_NUMBER_LENGTH: u32 = 32u32;
|
639
|
-
pub const DOT11_WPS_MAX_PASSKEY_LENGTH: u32 = 8u32;
|
640
|
-
pub const DOT11_WPS_PASSWORD_ID_DEFAULT: DOT11_WPS_DEVICE_PASSWORD_ID = 0i32;
|
641
|
-
pub const DOT11_WPS_PASSWORD_ID_MACHINE_SPECIFIED: DOT11_WPS_DEVICE_PASSWORD_ID = 2i32;
|
642
|
-
pub const DOT11_WPS_PASSWORD_ID_NFC_CONNECTION_HANDOVER: DOT11_WPS_DEVICE_PASSWORD_ID = 7i32;
|
643
|
-
pub const DOT11_WPS_PASSWORD_ID_OOB_RANGE_MAX: DOT11_WPS_DEVICE_PASSWORD_ID = 65535i32;
|
644
|
-
pub const DOT11_WPS_PASSWORD_ID_OOB_RANGE_MIN: DOT11_WPS_DEVICE_PASSWORD_ID = 16i32;
|
645
|
-
pub const DOT11_WPS_PASSWORD_ID_PUSHBUTTON: DOT11_WPS_DEVICE_PASSWORD_ID = 4i32;
|
646
|
-
pub const DOT11_WPS_PASSWORD_ID_REGISTRAR_SPECIFIED: DOT11_WPS_DEVICE_PASSWORD_ID = 5i32;
|
647
|
-
pub const DOT11_WPS_PASSWORD_ID_REKEY: DOT11_WPS_DEVICE_PASSWORD_ID = 3i32;
|
648
|
-
pub const DOT11_WPS_PASSWORD_ID_USER_SPECIFIED: DOT11_WPS_DEVICE_PASSWORD_ID = 1i32;
|
649
|
-
pub const DOT11_WPS_PASSWORD_ID_WFD_SERVICES: DOT11_WPS_DEVICE_PASSWORD_ID = 8i32;
|
650
|
-
pub const DOT11_WPS_VERSION_1_0: u32 = 1u32;
|
651
|
-
pub const DOT11_WPS_VERSION_2_0: u32 = 2u32;
|
652
|
-
pub const DevProp_PciDevice_AcsCompatibleUpHierarchy_Enhanced: DEVPROP_PCIDEVICE_ACSCOMPATIBLEUPHIERARCHY = 4u32;
|
653
|
-
pub const DevProp_PciDevice_AcsCompatibleUpHierarchy_NoP2PSupported: DEVPROP_PCIDEVICE_ACSCOMPATIBLEUPHIERARCHY = 2u32;
|
654
|
-
pub const DevProp_PciDevice_AcsCompatibleUpHierarchy_NotSupported: DEVPROP_PCIDEVICE_ACSCOMPATIBLEUPHIERARCHY = 0u32;
|
655
|
-
pub const DevProp_PciDevice_AcsCompatibleUpHierarchy_SingleFunctionSupported: DEVPROP_PCIDEVICE_ACSCOMPATIBLEUPHIERARCHY = 1u32;
|
656
|
-
pub const DevProp_PciDevice_AcsCompatibleUpHierarchy_Supported: DEVPROP_PCIDEVICE_ACSCOMPATIBLEUPHIERARCHY = 3u32;
|
657
|
-
pub const DevProp_PciDevice_AcsSupport_Missing: DEVPROP_PCIDEVICE_ACSSUPPORT = 2u32;
|
658
|
-
pub const DevProp_PciDevice_AcsSupport_NotNeeded: DEVPROP_PCIDEVICE_ACSSUPPORT = 1u32;
|
659
|
-
pub const DevProp_PciDevice_AcsSupport_Present: DEVPROP_PCIDEVICE_ACSSUPPORT = 0u32;
|
660
|
-
pub const DevProp_PciDevice_BridgeType_PciConventional: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 6u32;
|
661
|
-
pub const DevProp_PciDevice_BridgeType_PciExpressDownstreamSwitchPort: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 10u32;
|
662
|
-
pub const DevProp_PciDevice_BridgeType_PciExpressEventCollector: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 14u32;
|
663
|
-
pub const DevProp_PciDevice_BridgeType_PciExpressRootPort: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 8u32;
|
664
|
-
pub const DevProp_PciDevice_BridgeType_PciExpressToPciXBridge: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 11u32;
|
665
|
-
pub const DevProp_PciDevice_BridgeType_PciExpressTreatedAsPci: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 13u32;
|
666
|
-
pub const DevProp_PciDevice_BridgeType_PciExpressUpstreamSwitchPort: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 9u32;
|
667
|
-
pub const DevProp_PciDevice_BridgeType_PciX: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 7u32;
|
668
|
-
pub const DevProp_PciDevice_BridgeType_PciXToExpressBridge: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 12u32;
|
669
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_100Mhz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 2u32;
|
670
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_133MHZ: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 3u32;
|
671
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_66Mhz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 1u32;
|
672
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_100Mhz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 6u32;
|
673
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_133Mhz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 7u32;
|
674
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_66Mhz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 5u32;
|
675
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_100MHz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 10u32;
|
676
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_133MHz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 11u32;
|
677
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_66MHz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 9u32;
|
678
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_100MHz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 14u32;
|
679
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_133MHz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 15u32;
|
680
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_66MHz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 13u32;
|
681
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode_Conventional_Pci: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 0u32;
|
682
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_Pci_Conventional_33MHz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 0u32;
|
683
|
-
pub const DevProp_PciDevice_CurrentSpeedAndMode_Pci_Conventional_66MHz: DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = 1u32;
|
684
|
-
pub const DevProp_PciDevice_DeviceType_PciConventional: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 0u32;
|
685
|
-
pub const DevProp_PciDevice_DeviceType_PciExpressEndpoint: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 2u32;
|
686
|
-
pub const DevProp_PciDevice_DeviceType_PciExpressLegacyEndpoint: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 3u32;
|
687
|
-
pub const DevProp_PciDevice_DeviceType_PciExpressRootComplexIntegratedEndpoint: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 4u32;
|
688
|
-
pub const DevProp_PciDevice_DeviceType_PciExpressTreatedAsPci: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 5u32;
|
689
|
-
pub const DevProp_PciDevice_DeviceType_PciX: DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = 1u32;
|
690
|
-
pub const DevProp_PciDevice_InterruptType_LineBased: DEVPROP_PCIDEVICE_INTERRUPTTYPE = 1u32;
|
691
|
-
pub const DevProp_PciDevice_InterruptType_Msi: DEVPROP_PCIDEVICE_INTERRUPTTYPE = 2u32;
|
692
|
-
pub const DevProp_PciDevice_InterruptType_MsiX: DEVPROP_PCIDEVICE_INTERRUPTTYPE = 4u32;
|
693
|
-
pub const DevProp_PciDevice_SriovSupport_DidntGetVfBarSpace: DEVPROP_PCIDEVICE_SRIOVSUPPORT = 4u32;
|
694
|
-
pub const DevProp_PciDevice_SriovSupport_MissingAcs: DEVPROP_PCIDEVICE_SRIOVSUPPORT = 1u32;
|
695
|
-
pub const DevProp_PciDevice_SriovSupport_MissingPfDriver: DEVPROP_PCIDEVICE_SRIOVSUPPORT = 2u32;
|
696
|
-
pub const DevProp_PciDevice_SriovSupport_NoBusResource: DEVPROP_PCIDEVICE_SRIOVSUPPORT = 3u32;
|
697
|
-
pub const DevProp_PciDevice_SriovSupport_Ok: DEVPROP_PCIDEVICE_SRIOVSUPPORT = 0u32;
|
698
|
-
pub const DevProp_PciExpressDevice_LinkSpeed_Five_Gbps: DEVPROP_PCIEXPRESSDEVICE_LINKSPEED = 2u32;
|
699
|
-
pub const DevProp_PciExpressDevice_LinkSpeed_TwoAndHalf_Gbps: DEVPROP_PCIEXPRESSDEVICE_LINKSPEED = 1u32;
|
700
|
-
pub const DevProp_PciExpressDevice_LinkWidth_By_1: DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH = 1u32;
|
701
|
-
pub const DevProp_PciExpressDevice_LinkWidth_By_12: DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH = 12u32;
|
702
|
-
pub const DevProp_PciExpressDevice_LinkWidth_By_16: DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH = 16u32;
|
703
|
-
pub const DevProp_PciExpressDevice_LinkWidth_By_2: DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH = 2u32;
|
704
|
-
pub const DevProp_PciExpressDevice_LinkWidth_By_32: DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH = 32u32;
|
705
|
-
pub const DevProp_PciExpressDevice_LinkWidth_By_4: DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH = 4u32;
|
706
|
-
pub const DevProp_PciExpressDevice_LinkWidth_By_8: DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH = 8u32;
|
707
|
-
pub const DevProp_PciExpressDevice_PayloadOrRequestSize_1024Bytes: DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE = 3u32;
|
708
|
-
pub const DevProp_PciExpressDevice_PayloadOrRequestSize_128Bytes: DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE = 0u32;
|
709
|
-
pub const DevProp_PciExpressDevice_PayloadOrRequestSize_2048Bytes: DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE = 4u32;
|
710
|
-
pub const DevProp_PciExpressDevice_PayloadOrRequestSize_256Bytes: DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE = 1u32;
|
711
|
-
pub const DevProp_PciExpressDevice_PayloadOrRequestSize_4096Bytes: DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE = 5u32;
|
712
|
-
pub const DevProp_PciExpressDevice_PayloadOrRequestSize_512Bytes: DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE = 2u32;
|
713
|
-
pub const DevProp_PciExpressDevice_Spec_Version_10: DEVPROP_PCIEXPRESSDEVICE_SPEC_VERSION = 1u32;
|
714
|
-
pub const DevProp_PciExpressDevice_Spec_Version_11: DEVPROP_PCIEXPRESSDEVICE_SPEC_VERSION = 2u32;
|
715
|
-
pub const DevProp_PciRootBus_BusWidth_32Bits: DEVPROP_PCIROOTBUS_BUSWIDTH = 0u32;
|
716
|
-
pub const DevProp_PciRootBus_BusWidth_64Bits: DEVPROP_PCIROOTBUS_BUSWIDTH = 1u32;
|
717
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_Conventional_33Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 0u32;
|
718
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_Conventional_66Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 1u32;
|
719
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_100Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 9u32;
|
720
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_133Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 10u32;
|
721
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_66Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 8u32;
|
722
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_100Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 12u32;
|
723
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_133Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 13u32;
|
724
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_66Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 11u32;
|
725
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_100Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 3u32;
|
726
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_133Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 4u32;
|
727
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_66Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 2u32;
|
728
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_100Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 6u32;
|
729
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_133Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 7u32;
|
730
|
-
pub const DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_66Mhz: DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = 5u32;
|
731
|
-
pub const DevProp_PciRootBus_SecondaryInterface_PciConventional: DEVPROP_PCIROOTBUS_SECONDARYINTERFACE = 0u32;
|
732
|
-
pub const DevProp_PciRootBus_SecondaryInterface_PciExpress: DEVPROP_PCIROOTBUS_SECONDARYINTERFACE = 3u32;
|
733
|
-
pub const DevProp_PciRootBus_SecondaryInterface_PciXMode1: DEVPROP_PCIROOTBUS_SECONDARYINTERFACE = 1u32;
|
734
|
-
pub const DevProp_PciRootBus_SecondaryInterface_PciXMode2: DEVPROP_PCIROOTBUS_SECONDARYINTERFACE = 2u32;
|
735
|
-
pub const DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_Conventional_33Mhz: DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES = 1u32;
|
736
|
-
pub const DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_Conventional_66Mhz: DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES = 2u32;
|
737
|
-
pub const DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_133Mhz: DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES = 8u32;
|
738
|
-
pub const DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_266Mhz: DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES = 16u32;
|
739
|
-
pub const DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_533Mhz: DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES = 32u32;
|
740
|
-
pub const DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_66Mhz: DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES = 4u32;
|
741
|
-
pub const GUID_AEPSERVICE_WIFIDIRECT_DEVICE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcc29827c_9caf_4928_99a9_18f7c2381389);
|
742
|
-
pub const GUID_DEVINTERFACE_ASP_INFRA_DEVICE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xff823995_7a72_4c80_8757_c67ee13d1a49);
|
743
|
-
pub const GUID_DEVINTERFACE_WIFIDIRECT_DEVICE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x439b20af_8955_405b_99f0_a62af0c68d43);
|
744
|
-
pub const IHV_INIT_FUNCTION_NAME: windows_sys::core::PCSTR = windows_sys::core::s!("Dot11ExtIhvInitService");
|
745
|
-
pub const IHV_INIT_VS_FUNCTION_NAME: windows_sys::core::PCSTR = windows_sys::core::s!("Dot11ExtIhvInitVirtualStation");
|
746
|
-
pub const IHV_VERSION_FUNCTION_NAME: windows_sys::core::PCSTR = windows_sys::core::s!("Dot11ExtIhvGetVersionInfo");
|
747
|
-
pub const IndicationTypeLinkQuality: DOT11EXT_IHV_INDICATION_TYPE = 4i32;
|
748
|
-
pub const IndicationTypeNicSpecificNotification: DOT11EXT_IHV_INDICATION_TYPE = 0i32;
|
749
|
-
pub const IndicationTypePhyStateChange: DOT11EXT_IHV_INDICATION_TYPE = 3i32;
|
750
|
-
pub const IndicationTypePmkidCandidateList: DOT11EXT_IHV_INDICATION_TYPE = 1i32;
|
751
|
-
pub const IndicationTypeTkipMicFailure: DOT11EXT_IHV_INDICATION_TYPE = 2i32;
|
752
|
-
pub const L2_NOTIFICATION_CODE_GROUP_SIZE: u32 = 4096u32;
|
753
|
-
pub const L2_NOTIFICATION_CODE_PUBLIC_BEGIN: u32 = 0u32;
|
754
|
-
pub const L2_NOTIFICATION_SOURCE_ALL: u32 = 65535u32;
|
755
|
-
pub const L2_NOTIFICATION_SOURCE_DOT3_AUTO_CONFIG: u32 = 1u32;
|
756
|
-
pub const L2_NOTIFICATION_SOURCE_NONE: u32 = 0u32;
|
757
|
-
pub const L2_NOTIFICATION_SOURCE_ONEX: u32 = 4u32;
|
758
|
-
pub const L2_NOTIFICATION_SOURCE_SECURITY: u32 = 2u32;
|
759
|
-
pub const L2_NOTIFICATION_SOURCE_WCM: u32 = 256u32;
|
760
|
-
pub const L2_NOTIFICATION_SOURCE_WCM_CSP: u32 = 512u32;
|
761
|
-
pub const L2_NOTIFICATION_SOURCE_WFD: u32 = 1024u32;
|
762
|
-
pub const L2_NOTIFICATION_SOURCE_WLAN_ACM: u32 = 8u32;
|
763
|
-
pub const L2_NOTIFICATION_SOURCE_WLAN_DEVICE_SERVICE: u32 = 2048u32;
|
764
|
-
pub const L2_NOTIFICATION_SOURCE_WLAN_HNWK: u32 = 128u32;
|
765
|
-
pub const L2_NOTIFICATION_SOURCE_WLAN_IHV: u32 = 64u32;
|
766
|
-
pub const L2_NOTIFICATION_SOURCE_WLAN_MSM: u32 = 16u32;
|
767
|
-
pub const L2_NOTIFICATION_SOURCE_WLAN_SECURITY: u32 = 32u32;
|
768
|
-
pub const L2_PROFILE_MAX_NAME_LENGTH: u32 = 256u32;
|
769
|
-
pub const L2_REASON_CODE_DOT11_AC_BASE: u32 = 131072u32;
|
770
|
-
pub const L2_REASON_CODE_DOT11_MSM_BASE: u32 = 196608u32;
|
771
|
-
pub const L2_REASON_CODE_DOT11_SECURITY_BASE: u32 = 262144u32;
|
772
|
-
pub const L2_REASON_CODE_DOT3_AC_BASE: u32 = 393216u32;
|
773
|
-
pub const L2_REASON_CODE_DOT3_MSM_BASE: u32 = 458752u32;
|
774
|
-
pub const L2_REASON_CODE_GEN_BASE: u32 = 65536u32;
|
775
|
-
pub const L2_REASON_CODE_GROUP_SIZE: u32 = 65536u32;
|
776
|
-
pub const L2_REASON_CODE_IHV_BASE: u32 = 589824u32;
|
777
|
-
pub const L2_REASON_CODE_ONEX_BASE: u32 = 327680u32;
|
778
|
-
pub const L2_REASON_CODE_PROFILE_BASE: u32 = 524288u32;
|
779
|
-
pub const L2_REASON_CODE_PROFILE_MISSING: u32 = 1u32;
|
780
|
-
pub const L2_REASON_CODE_RESERVED_BASE: u32 = 720896u32;
|
781
|
-
pub const L2_REASON_CODE_SUCCESS: u32 = 0u32;
|
782
|
-
pub const L2_REASON_CODE_UNKNOWN: u32 = 65537u32;
|
783
|
-
pub const L2_REASON_CODE_WIMAX_BASE: u32 = 655360u32;
|
784
|
-
pub const MAX_NUM_SUPPORTED_RATES: u32 = 8u32;
|
785
|
-
pub const MAX_NUM_SUPPORTED_RATES_V2: u32 = 255u32;
|
786
|
-
pub const MS_MAX_PROFILE_NAME_LENGTH: u32 = 256u32;
|
787
|
-
pub const MS_PROFILE_GROUP_POLICY: u32 = 1u32;
|
788
|
-
pub const MS_PROFILE_USER: u32 = 2u32;
|
789
|
-
pub const NDIS_PACKET_TYPE_802_11_ALL_MULTICAST_DATA: u32 = 4u32;
|
790
|
-
pub const NDIS_PACKET_TYPE_802_11_BROADCAST_DATA: u32 = 8u32;
|
791
|
-
pub const NDIS_PACKET_TYPE_802_11_DIRECTED_DATA: u32 = 1u32;
|
792
|
-
pub const NDIS_PACKET_TYPE_802_11_MULTICAST_DATA: u32 = 2u32;
|
793
|
-
pub const NDIS_PACKET_TYPE_802_11_PROMISCUOUS_DATA: u32 = 32u32;
|
794
|
-
pub const OID_DOT11_AP_JOIN_REQUEST: u32 = 218170205u32;
|
795
|
-
pub const OID_DOT11_ATIM_WINDOW: u32 = 218170122u32;
|
796
|
-
pub const OID_DOT11_BEACON_PERIOD: u32 = 218170139u32;
|
797
|
-
pub const OID_DOT11_CCA_MODE_SUPPORTED: u32 = 218170166u32;
|
798
|
-
pub const OID_DOT11_CCA_WATCHDOG_COUNT_MAX: u32 = 218170170u32;
|
799
|
-
pub const OID_DOT11_CCA_WATCHDOG_COUNT_MIN: u32 = 218170172u32;
|
800
|
-
pub const OID_DOT11_CCA_WATCHDOG_TIMER_MAX: u32 = 218170169u32;
|
801
|
-
pub const OID_DOT11_CCA_WATCHDOG_TIMER_MIN: u32 = 218170171u32;
|
802
|
-
pub const OID_DOT11_CFP_MAX_DURATION: u32 = 218170136u32;
|
803
|
-
pub const OID_DOT11_CFP_PERIOD: u32 = 218170135u32;
|
804
|
-
pub const OID_DOT11_CF_POLLABLE: u32 = 218170134u32;
|
805
|
-
pub const OID_DOT11_CHANNEL_AGILITY_ENABLED: u32 = 218170184u32;
|
806
|
-
pub const OID_DOT11_CHANNEL_AGILITY_PRESENT: u32 = 218170183u32;
|
807
|
-
pub const OID_DOT11_COUNTERS_ENTRY: u32 = 218170149u32;
|
808
|
-
pub const OID_DOT11_COUNTRY_STRING: u32 = 218170188u32;
|
809
|
-
pub const OID_DOT11_CURRENT_ADDRESS: u32 = 218171138u32;
|
810
|
-
pub const OID_DOT11_CURRENT_CCA_MODE: u32 = 218170167u32;
|
811
|
-
pub const OID_DOT11_CURRENT_CHANNEL: u32 = 218170165u32;
|
812
|
-
pub const OID_DOT11_CURRENT_CHANNEL_NUMBER: u32 = 218170159u32;
|
813
|
-
pub const OID_DOT11_CURRENT_DWELL_TIME: u32 = 218170161u32;
|
814
|
-
pub const OID_DOT11_CURRENT_FREQUENCY: u32 = 218170178u32;
|
815
|
-
pub const OID_DOT11_CURRENT_INDEX: u32 = 218170164u32;
|
816
|
-
pub const OID_DOT11_CURRENT_OFFLOAD_CAPABILITY: u32 = 218170113u32;
|
817
|
-
pub const OID_DOT11_CURRENT_OPERATION_MODE: u32 = 218170120u32;
|
818
|
-
pub const OID_DOT11_CURRENT_OPTIONAL_CAPABILITY: u32 = 218170131u32;
|
819
|
-
pub const OID_DOT11_CURRENT_PACKET_FILTER: u32 = 218170121u32;
|
820
|
-
pub const OID_DOT11_CURRENT_PATTERN: u32 = 218170163u32;
|
821
|
-
pub const OID_DOT11_CURRENT_PHY_TYPE: u32 = 218170124u32;
|
822
|
-
pub const OID_DOT11_CURRENT_REG_DOMAIN: u32 = 218170151u32;
|
823
|
-
pub const OID_DOT11_CURRENT_RX_ANTENNA: u32 = 218170155u32;
|
824
|
-
pub const OID_DOT11_CURRENT_SET: u32 = 218170162u32;
|
825
|
-
pub const OID_DOT11_CURRENT_TX_ANTENNA: u32 = 218170153u32;
|
826
|
-
pub const OID_DOT11_CURRENT_TX_POWER_LEVEL: u32 = 218170157u32;
|
827
|
-
pub const OID_DOT11_DEFAULT_WEP_OFFLOAD: u32 = 218170116u32;
|
828
|
-
pub const OID_DOT11_DEFAULT_WEP_UPLOAD: u32 = 218170117u32;
|
829
|
-
pub const OID_DOT11_DIVERSITY_SELECTION_RX: u32 = 218170176u32;
|
830
|
-
pub const OID_DOT11_DIVERSITY_SUPPORT: u32 = 218170154u32;
|
831
|
-
pub const OID_DOT11_DSSS_OFDM_OPTION_ENABLED: u32 = 218170209u32;
|
832
|
-
pub const OID_DOT11_DSSS_OFDM_OPTION_IMPLEMENTED: u32 = 218170208u32;
|
833
|
-
pub const OID_DOT11_DTIM_PERIOD: u32 = 218170140u32;
|
834
|
-
pub const OID_DOT11_ED_THRESHOLD: u32 = 218170168u32;
|
835
|
-
pub const OID_DOT11_EHCC_CAPABILITY_ENABLED: u32 = 218170193u32;
|
836
|
-
pub const OID_DOT11_EHCC_CAPABILITY_IMPLEMENTED: u32 = 218170192u32;
|
837
|
-
pub const OID_DOT11_EHCC_NUMBER_OF_CHANNELS_FAMILY_INDEX: u32 = 218170191u32;
|
838
|
-
pub const OID_DOT11_EHCC_PRIME_RADIX: u32 = 218170190u32;
|
839
|
-
pub const OID_DOT11_ERP_PBCC_OPTION_ENABLED: u32 = 218170207u32;
|
840
|
-
pub const OID_DOT11_ERP_PBCC_OPTION_IMPLEMENTED: u32 = 218170206u32;
|
841
|
-
pub const OID_DOT11_FRAGMENTATION_THRESHOLD: u32 = 218170146u32;
|
842
|
-
pub const OID_DOT11_FREQUENCY_BANDS_SUPPORTED: u32 = 218170180u32;
|
843
|
-
pub const OID_DOT11_HOPPING_PATTERN: u32 = 218170199u32;
|
844
|
-
pub const OID_DOT11_HOP_ALGORITHM_ADOPTED: u32 = 218170194u32;
|
845
|
-
pub const OID_DOT11_HOP_MODULUS: u32 = 218170197u32;
|
846
|
-
pub const OID_DOT11_HOP_OFFSET: u32 = 218170198u32;
|
847
|
-
pub const OID_DOT11_HOP_TIME: u32 = 218170158u32;
|
848
|
-
pub const OID_DOT11_HR_CCA_MODE_SUPPORTED: u32 = 218170185u32;
|
849
|
-
pub const OID_DOT11_JOIN_REQUEST: u32 = 218170125u32;
|
850
|
-
pub const OID_DOT11_LONG_RETRY_LIMIT: u32 = 218170145u32;
|
851
|
-
pub const OID_DOT11_MAC_ADDRESS: u32 = 218170142u32;
|
852
|
-
pub const OID_DOT11_MAXIMUM_LIST_SIZE: u32 = 218171141u32;
|
853
|
-
pub const OID_DOT11_MAX_DWELL_TIME: u32 = 218170160u32;
|
854
|
-
pub const OID_DOT11_MAX_MAC_ADDRESS_STATES: u32 = 218170212u32;
|
855
|
-
pub const OID_DOT11_MAX_RECEIVE_LIFETIME: u32 = 218170148u32;
|
856
|
-
pub const OID_DOT11_MAX_TRANSMIT_MSDU_LIFETIME: u32 = 218170147u32;
|
857
|
-
pub const OID_DOT11_MEDIUM_OCCUPANCY_LIMIT: u32 = 218170133u32;
|
858
|
-
pub const OID_DOT11_MPDU_MAX_LENGTH: u32 = 218170118u32;
|
859
|
-
pub const OID_DOT11_MULTICAST_LIST: u32 = 218171140u32;
|
860
|
-
pub const OID_DOT11_MULTI_DOMAIN_CAPABILITY: u32 = 218170189u32;
|
861
|
-
pub const OID_DOT11_MULTI_DOMAIN_CAPABILITY_ENABLED: u32 = 218170187u32;
|
862
|
-
pub const OID_DOT11_MULTI_DOMAIN_CAPABILITY_IMPLEMENTED: u32 = 218170186u32;
|
863
|
-
pub const OID_DOT11_NDIS_START: u32 = 218170112u32;
|
864
|
-
pub const OID_DOT11_NIC_POWER_STATE: u32 = 218170129u32;
|
865
|
-
pub const OID_DOT11_NIC_SPECIFIC_EXTENSION: u32 = 218170204u32;
|
866
|
-
pub const OID_DOT11_NUMBER_OF_HOPPING_SETS: u32 = 218170196u32;
|
867
|
-
pub const OID_DOT11_OFFLOAD_CAPABILITY: u32 = 218170112u32;
|
868
|
-
pub const OID_DOT11_OPERATIONAL_RATE_SET: u32 = 218170138u32;
|
869
|
-
pub const OID_DOT11_OPERATION_MODE_CAPABILITY: u32 = 218170119u32;
|
870
|
-
pub const OID_DOT11_OPTIONAL_CAPABILITY: u32 = 218170130u32;
|
871
|
-
pub const OID_DOT11_PBCC_OPTION_IMPLEMENTED: u32 = 218170182u32;
|
872
|
-
pub const OID_DOT11_PERMANENT_ADDRESS: u32 = 218171139u32;
|
873
|
-
pub const OID_DOT11_POWER_MGMT_MODE: u32 = 218170137u32;
|
874
|
-
pub const OID_DOT11_PRIVATE_OIDS_START: u32 = 218171136u32;
|
875
|
-
pub const OID_DOT11_QOS_TX_DURATION: u32 = 218170219u32;
|
876
|
-
pub const OID_DOT11_QOS_TX_MEDIUM_TIME: u32 = 218170220u32;
|
877
|
-
pub const OID_DOT11_QOS_TX_QUEUES_SUPPORTED: u32 = 218170218u32;
|
878
|
-
pub const OID_DOT11_RANDOM_TABLE_FIELD_NUMBER: u32 = 218170200u32;
|
879
|
-
pub const OID_DOT11_RANDOM_TABLE_FLAG: u32 = 218170195u32;
|
880
|
-
pub const OID_DOT11_RECV_SENSITIVITY_LIST: u32 = 218170213u32;
|
881
|
-
pub const OID_DOT11_REG_DOMAINS_SUPPORT_VALUE: u32 = 218170173u32;
|
882
|
-
pub const OID_DOT11_RESET_REQUEST: u32 = 218170128u32;
|
883
|
-
pub const OID_DOT11_RF_USAGE: u32 = 218170203u32;
|
884
|
-
pub const OID_DOT11_RSSI_RANGE: u32 = 218170202u32;
|
885
|
-
pub const OID_DOT11_RTS_THRESHOLD: u32 = 218170143u32;
|
886
|
-
pub const OID_DOT11_SCAN_REQUEST: u32 = 218170123u32;
|
887
|
-
pub const OID_DOT11_SHORT_PREAMBLE_OPTION_IMPLEMENTED: u32 = 218170181u32;
|
888
|
-
pub const OID_DOT11_SHORT_RETRY_LIMIT: u32 = 218170144u32;
|
889
|
-
pub const OID_DOT11_SHORT_SLOT_TIME_OPTION_ENABLED: u32 = 218170211u32;
|
890
|
-
pub const OID_DOT11_SHORT_SLOT_TIME_OPTION_IMPLEMENTED: u32 = 218170210u32;
|
891
|
-
pub const OID_DOT11_START_REQUEST: u32 = 218170126u32;
|
892
|
-
pub const OID_DOT11_STATION_ID: u32 = 218170132u32;
|
893
|
-
pub const OID_DOT11_SUPPORTED_DATA_RATES_VALUE: u32 = 218170177u32;
|
894
|
-
pub const OID_DOT11_SUPPORTED_DSSS_CHANNEL_LIST: u32 = 218170222u32;
|
895
|
-
pub const OID_DOT11_SUPPORTED_OFDM_FREQUENCY_LIST: u32 = 218170221u32;
|
896
|
-
pub const OID_DOT11_SUPPORTED_PHY_TYPES: u32 = 218170150u32;
|
897
|
-
pub const OID_DOT11_SUPPORTED_POWER_LEVELS: u32 = 218170156u32;
|
898
|
-
pub const OID_DOT11_SUPPORTED_RX_ANTENNA: u32 = 218170175u32;
|
899
|
-
pub const OID_DOT11_SUPPORTED_TX_ANTENNA: u32 = 218170174u32;
|
900
|
-
pub const OID_DOT11_TEMP_TYPE: u32 = 218170152u32;
|
901
|
-
pub const OID_DOT11_TI_THRESHOLD: u32 = 218170179u32;
|
902
|
-
pub const OID_DOT11_UPDATE_IE: u32 = 218170127u32;
|
903
|
-
pub const OID_DOT11_WEP_ICV_ERROR_COUNT: u32 = 218170141u32;
|
904
|
-
pub const OID_DOT11_WEP_OFFLOAD: u32 = 218170114u32;
|
905
|
-
pub const OID_DOT11_WEP_UPLOAD: u32 = 218170115u32;
|
906
|
-
pub const OID_DOT11_WME_AC_PARAMETERS: u32 = 218170216u32;
|
907
|
-
pub const OID_DOT11_WME_ENABLED: u32 = 218170215u32;
|
908
|
-
pub const OID_DOT11_WME_IMPLEMENTED: u32 = 218170214u32;
|
909
|
-
pub const OID_DOT11_WME_UPDATE_IE: u32 = 218170217u32;
|
910
|
-
pub const OID_DOT11_WPA_TSC: u32 = 218170201u32;
|
911
|
-
pub const ONEX_AUTHENTICATOR_NO_LONGER_PRESENT: ONEX_REASON_CODE = 327686i32;
|
912
|
-
pub const ONEX_EAP_FAILURE_RECEIVED: ONEX_REASON_CODE = 327685i32;
|
913
|
-
pub const ONEX_IDENTITY_NOT_FOUND: ONEX_REASON_CODE = 327682i32;
|
914
|
-
pub const ONEX_NO_RESPONSE_TO_IDENTITY: ONEX_REASON_CODE = 327687i32;
|
915
|
-
pub const ONEX_PROFILE_DISALLOWED_EAP_TYPE: ONEX_REASON_CODE = 327690i32;
|
916
|
-
pub const ONEX_PROFILE_EXPIRED_EXPLICIT_CREDENTIALS: ONEX_REASON_CODE = 327699i32;
|
917
|
-
pub const ONEX_PROFILE_INVALID_AUTH_MODE: ONEX_REASON_CODE = 327695i32;
|
918
|
-
pub const ONEX_PROFILE_INVALID_EAP_CONNECTION_PROPERTIES: ONEX_REASON_CODE = 327696i32;
|
919
|
-
pub const ONEX_PROFILE_INVALID_EAP_TYPE_OR_FLAG: ONEX_REASON_CODE = 327691i32;
|
920
|
-
pub const ONEX_PROFILE_INVALID_EXPLICIT_CREDENTIALS: ONEX_REASON_CODE = 327698i32;
|
921
|
-
pub const ONEX_PROFILE_INVALID_LENGTH: ONEX_REASON_CODE = 327689i32;
|
922
|
-
pub const ONEX_PROFILE_INVALID_ONEX_FLAGS: ONEX_REASON_CODE = 327692i32;
|
923
|
-
pub const ONEX_PROFILE_INVALID_SUPPLICANT_MODE: ONEX_REASON_CODE = 327694i32;
|
924
|
-
pub const ONEX_PROFILE_INVALID_TIMER_VALUE: ONEX_REASON_CODE = 327693i32;
|
925
|
-
pub const ONEX_PROFILE_VERSION_NOT_SUPPORTED: ONEX_REASON_CODE = 327688i32;
|
926
|
-
pub const ONEX_REASON_CODE_SUCCESS: ONEX_REASON_CODE = 0i32;
|
927
|
-
pub const ONEX_REASON_START: ONEX_REASON_CODE = 327680i32;
|
928
|
-
pub const ONEX_UI_CANCELLED: ONEX_REASON_CODE = 327697i32;
|
929
|
-
pub const ONEX_UI_DISABLED: ONEX_REASON_CODE = 327683i32;
|
930
|
-
pub const ONEX_UI_FAILURE: ONEX_REASON_CODE = 327684i32;
|
931
|
-
pub const ONEX_UI_NOT_PERMITTED: ONEX_REASON_CODE = 327700i32;
|
932
|
-
pub const ONEX_UNABLE_TO_IDENTIFY_USER: ONEX_REASON_CODE = 327681i32;
|
933
|
-
pub const OneXAuthFailure: ONEX_AUTH_STATUS = 4i32;
|
934
|
-
pub const OneXAuthIdentityExplicitUser: ONEX_AUTH_IDENTITY = 3i32;
|
935
|
-
pub const OneXAuthIdentityGuest: ONEX_AUTH_IDENTITY = 4i32;
|
936
|
-
pub const OneXAuthIdentityInvalid: ONEX_AUTH_IDENTITY = 5i32;
|
937
|
-
pub const OneXAuthIdentityMachine: ONEX_AUTH_IDENTITY = 1i32;
|
938
|
-
pub const OneXAuthIdentityNone: ONEX_AUTH_IDENTITY = 0i32;
|
939
|
-
pub const OneXAuthIdentityUser: ONEX_AUTH_IDENTITY = 2i32;
|
940
|
-
pub const OneXAuthInProgress: ONEX_AUTH_STATUS = 1i32;
|
941
|
-
pub const OneXAuthInvalid: ONEX_AUTH_STATUS = 5i32;
|
942
|
-
pub const OneXAuthNoAuthenticatorFound: ONEX_AUTH_STATUS = 2i32;
|
943
|
-
pub const OneXAuthNotStarted: ONEX_AUTH_STATUS = 0i32;
|
944
|
-
pub const OneXAuthSuccess: ONEX_AUTH_STATUS = 3i32;
|
945
|
-
pub const OneXEapMethodBackendSupportUnknown: ONEX_EAP_METHOD_BACKEND_SUPPORT = 0i32;
|
946
|
-
pub const OneXEapMethodBackendSupported: ONEX_EAP_METHOD_BACKEND_SUPPORT = 1i32;
|
947
|
-
pub const OneXEapMethodBackendUnsupported: ONEX_EAP_METHOD_BACKEND_SUPPORT = 2i32;
|
948
|
-
pub const OneXNotificationTypeAuthRestarted: ONEX_NOTIFICATION_TYPE = 2i32;
|
949
|
-
pub const OneXNotificationTypeEventInvalid: ONEX_NOTIFICATION_TYPE = 3i32;
|
950
|
-
pub const OneXNotificationTypeResultUpdate: ONEX_NOTIFICATION_TYPE = 1i32;
|
951
|
-
pub const OneXNumNotifications: ONEX_NOTIFICATION_TYPE = 3i32;
|
952
|
-
pub const OneXPublicNotificationBase: ONEX_NOTIFICATION_TYPE = 0i32;
|
953
|
-
pub const OneXRestartReasonAltCredsTrial: ONEX_AUTH_RESTART_REASON = 7i32;
|
954
|
-
pub const OneXRestartReasonInvalid: ONEX_AUTH_RESTART_REASON = 8i32;
|
955
|
-
pub const OneXRestartReasonMsmInitiated: ONEX_AUTH_RESTART_REASON = 1i32;
|
956
|
-
pub const OneXRestartReasonOneXAuthTimeout: ONEX_AUTH_RESTART_REASON = 3i32;
|
957
|
-
pub const OneXRestartReasonOneXConfigurationChanged: ONEX_AUTH_RESTART_REASON = 4i32;
|
958
|
-
pub const OneXRestartReasonOneXHeldStateTimeout: ONEX_AUTH_RESTART_REASON = 2i32;
|
959
|
-
pub const OneXRestartReasonOneXUserChanged: ONEX_AUTH_RESTART_REASON = 5i32;
|
960
|
-
pub const OneXRestartReasonPeerInitiated: ONEX_AUTH_RESTART_REASON = 0i32;
|
961
|
-
pub const OneXRestartReasonQuarantineStateChanged: ONEX_AUTH_RESTART_REASON = 6i32;
|
962
|
-
pub const WDIAG_IHV_WLAN_ID_FLAG_SECURITY_ENABLED: u32 = 1u32;
|
963
|
-
pub const WFDSVC_CONNECTION_CAPABILITY_CLIENT: u32 = 2u32;
|
964
|
-
pub const WFDSVC_CONNECTION_CAPABILITY_GO: u32 = 4u32;
|
965
|
-
pub const WFDSVC_CONNECTION_CAPABILITY_NEW: u32 = 1u32;
|
966
|
-
pub const WFD_API_VERSION: u32 = 1u32;
|
967
|
-
pub const WFD_API_VERSION_1_0: u32 = 1u32;
|
968
|
-
pub const WFD_ROLE_TYPE_CLIENT: WFD_ROLE_TYPE = 4i32;
|
969
|
-
pub const WFD_ROLE_TYPE_DEVICE: WFD_ROLE_TYPE = 1i32;
|
970
|
-
pub const WFD_ROLE_TYPE_GROUP_OWNER: WFD_ROLE_TYPE = 2i32;
|
971
|
-
pub const WFD_ROLE_TYPE_MAX: WFD_ROLE_TYPE = 5i32;
|
972
|
-
pub const WFD_ROLE_TYPE_NONE: WFD_ROLE_TYPE = 0i32;
|
973
|
-
pub const WLAN_API_VERSION: u32 = 2u32;
|
974
|
-
pub const WLAN_API_VERSION_1_0: u32 = 1u32;
|
975
|
-
pub const WLAN_API_VERSION_2_0: u32 = 2u32;
|
976
|
-
pub const WLAN_AVAILABLE_NETWORK_ANQP_SUPPORTED: u32 = 32u32;
|
977
|
-
pub const WLAN_AVAILABLE_NETWORK_AUTO_CONNECT_FAILED: u32 = 256u32;
|
978
|
-
pub const WLAN_AVAILABLE_NETWORK_CONNECTED: u32 = 1u32;
|
979
|
-
pub const WLAN_AVAILABLE_NETWORK_CONSOLE_USER_PROFILE: u32 = 4u32;
|
980
|
-
pub const WLAN_AVAILABLE_NETWORK_HAS_PROFILE: u32 = 2u32;
|
981
|
-
pub const WLAN_AVAILABLE_NETWORK_HOTSPOT2_DOMAIN: u32 = 64u32;
|
982
|
-
pub const WLAN_AVAILABLE_NETWORK_HOTSPOT2_ENABLED: u32 = 16u32;
|
983
|
-
pub const WLAN_AVAILABLE_NETWORK_HOTSPOT2_ROAMING: u32 = 128u32;
|
984
|
-
pub const WLAN_AVAILABLE_NETWORK_INCLUDE_ALL_ADHOC_PROFILES: u32 = 1u32;
|
985
|
-
pub const WLAN_AVAILABLE_NETWORK_INCLUDE_ALL_MANUAL_HIDDEN_PROFILES: u32 = 2u32;
|
986
|
-
pub const WLAN_AVAILABLE_NETWORK_INTERWORKING_SUPPORTED: u32 = 8u32;
|
987
|
-
pub const WLAN_CONNECTION_ADHOC_JOIN_ONLY: u32 = 2u32;
|
988
|
-
pub const WLAN_CONNECTION_EAPOL_PASSTHROUGH: u32 = 8u32;
|
989
|
-
pub const WLAN_CONNECTION_HIDDEN_NETWORK: u32 = 1u32;
|
990
|
-
pub const WLAN_CONNECTION_IGNORE_PRIVACY_BIT: u32 = 4u32;
|
991
|
-
pub const WLAN_CONNECTION_NOTIFICATION_ADHOC_NETWORK_FORMED: WLAN_CONNECTION_NOTIFICATION_FLAGS = 1u32;
|
992
|
-
pub const WLAN_CONNECTION_NOTIFICATION_CONSOLE_USER_PROFILE: WLAN_CONNECTION_NOTIFICATION_FLAGS = 4u32;
|
993
|
-
pub const WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE: u32 = 16u32;
|
994
|
-
pub const WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE_CONNECTION_MODE_AUTO: u32 = 32u32;
|
995
|
-
pub const WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE_OVERWRITE_EXISTING: u32 = 64u32;
|
996
|
-
pub const WLAN_MAX_NAME_LENGTH: u32 = 256u32;
|
997
|
-
pub const WLAN_MAX_PHY_INDEX: u32 = 64u32;
|
998
|
-
pub const WLAN_MAX_PHY_TYPE_NUMBER: u32 = 8u32;
|
999
|
-
pub const WLAN_NOTIFICATION_SOURCE_ACM: WLAN_NOTIFICATION_SOURCES = 8u32;
|
1000
|
-
pub const WLAN_NOTIFICATION_SOURCE_ALL: WLAN_NOTIFICATION_SOURCES = 65535u32;
|
1001
|
-
pub const WLAN_NOTIFICATION_SOURCE_DEVICE_SERVICE: WLAN_NOTIFICATION_SOURCES = 2048u32;
|
1002
|
-
pub const WLAN_NOTIFICATION_SOURCE_HNWK: WLAN_NOTIFICATION_SOURCES = 128u32;
|
1003
|
-
pub const WLAN_NOTIFICATION_SOURCE_IHV: WLAN_NOTIFICATION_SOURCES = 64u32;
|
1004
|
-
pub const WLAN_NOTIFICATION_SOURCE_MSM: WLAN_NOTIFICATION_SOURCES = 16u32;
|
1005
|
-
pub const WLAN_NOTIFICATION_SOURCE_NONE: WLAN_NOTIFICATION_SOURCES = 0u32;
|
1006
|
-
pub const WLAN_NOTIFICATION_SOURCE_ONEX: WLAN_NOTIFICATION_SOURCES = 4u32;
|
1007
|
-
pub const WLAN_NOTIFICATION_SOURCE_SECURITY: WLAN_NOTIFICATION_SOURCES = 32u32;
|
1008
|
-
pub const WLAN_PROFILE_CONNECTION_MODE_AUTO: u32 = 131072u32;
|
1009
|
-
pub const WLAN_PROFILE_CONNECTION_MODE_SET_BY_CLIENT: u32 = 65536u32;
|
1010
|
-
pub const WLAN_PROFILE_GET_PLAINTEXT_KEY: u32 = 4u32;
|
1011
|
-
pub const WLAN_PROFILE_GROUP_POLICY: u32 = 1u32;
|
1012
|
-
pub const WLAN_PROFILE_USER: u32 = 2u32;
|
1013
|
-
pub const WLAN_REASON_CODE_AC_BASE: u32 = 131072u32;
|
1014
|
-
pub const WLAN_REASON_CODE_AC_CONNECT_BASE: u32 = 163840u32;
|
1015
|
-
pub const WLAN_REASON_CODE_AC_END: u32 = 196607u32;
|
1016
|
-
pub const WLAN_REASON_CODE_ADHOC_SECURITY_FAILURE: u32 = 229386u32;
|
1017
|
-
pub const WLAN_REASON_CODE_AP_PROFILE_NOT_ALLOWED: u32 = 163856u32;
|
1018
|
-
pub const WLAN_REASON_CODE_AP_PROFILE_NOT_ALLOWED_FOR_CLIENT: u32 = 163855u32;
|
1019
|
-
pub const WLAN_REASON_CODE_AP_STARTING_FAILURE: u32 = 229395u32;
|
1020
|
-
pub const WLAN_REASON_CODE_ASSOCIATION_FAILURE: u32 = 229378u32;
|
1021
|
-
pub const WLAN_REASON_CODE_ASSOCIATION_TIMEOUT: u32 = 229379u32;
|
1022
|
-
pub const WLAN_REASON_CODE_AUTO_AP_PROFILE_NOT_ALLOWED: u32 = 524313u32;
|
1023
|
-
pub const WLAN_REASON_CODE_AUTO_CONNECTION_NOT_ALLOWED: u32 = 524314u32;
|
1024
|
-
pub const WLAN_REASON_CODE_AUTO_SWITCH_SET_FOR_ADHOC: u32 = 524304u32;
|
1025
|
-
pub const WLAN_REASON_CODE_AUTO_SWITCH_SET_FOR_MANUAL_CONNECTION: u32 = 524305u32;
|
1026
|
-
pub const WLAN_REASON_CODE_BAD_MAX_NUMBER_OF_CLIENTS_FOR_AP: u32 = 524310u32;
|
1027
|
-
pub const WLAN_REASON_CODE_BASE: u32 = 131072u32;
|
1028
|
-
pub const WLAN_REASON_CODE_BSS_TYPE_NOT_ALLOWED: u32 = 163845u32;
|
1029
|
-
pub const WLAN_REASON_CODE_BSS_TYPE_UNMATCH: u32 = 196611u32;
|
1030
|
-
pub const WLAN_REASON_CODE_CONFLICT_SECURITY: u32 = 524299u32;
|
1031
|
-
pub const WLAN_REASON_CODE_CONNECT_CALL_FAIL: u32 = 163849u32;
|
1032
|
-
pub const WLAN_REASON_CODE_DATARATE_UNMATCH: u32 = 196613u32;
|
1033
|
-
pub const WLAN_REASON_CODE_DISCONNECT_TIMEOUT: u32 = 229391u32;
|
1034
|
-
pub const WLAN_REASON_CODE_DRIVER_DISCONNECTED: u32 = 229387u32;
|
1035
|
-
pub const WLAN_REASON_CODE_DRIVER_OPERATION_FAILURE: u32 = 229388u32;
|
1036
|
-
pub const WLAN_REASON_CODE_GP_DENIED: u32 = 163843u32;
|
1037
|
-
pub const WLAN_REASON_CODE_HOTSPOT2_PROFILE_DENIED: u32 = 163857u32;
|
1038
|
-
pub const WLAN_REASON_CODE_HOTSPOT2_PROFILE_NOT_ALLOWED: u32 = 524315u32;
|
1039
|
-
pub const WLAN_REASON_CODE_IHV_CONNECTIVITY_NOT_SUPPORTED: u32 = 524309u32;
|
1040
|
-
pub const WLAN_REASON_CODE_IHV_NOT_AVAILABLE: u32 = 229389u32;
|
1041
|
-
pub const WLAN_REASON_CODE_IHV_NOT_RESPONDING: u32 = 229390u32;
|
1042
|
-
pub const WLAN_REASON_CODE_IHV_OUI_MISMATCH: u32 = 524296u32;
|
1043
|
-
pub const WLAN_REASON_CODE_IHV_OUI_MISSING: u32 = 524297u32;
|
1044
|
-
pub const WLAN_REASON_CODE_IHV_SECURITY_NOT_SUPPORTED: u32 = 524295u32;
|
1045
|
-
pub const WLAN_REASON_CODE_IHV_SECURITY_ONEX_MISSING: u32 = 524306u32;
|
1046
|
-
pub const WLAN_REASON_CODE_IHV_SETTINGS_MISSING: u32 = 524298u32;
|
1047
|
-
pub const WLAN_REASON_CODE_INTERNAL_FAILURE: u32 = 229392u32;
|
1048
|
-
pub const WLAN_REASON_CODE_INVALID_ADHOC_CONNECTION_MODE: u32 = 524302u32;
|
1049
|
-
pub const WLAN_REASON_CODE_INVALID_BSS_TYPE: u32 = 524301u32;
|
1050
|
-
pub const WLAN_REASON_CODE_INVALID_CHANNEL: u32 = 524311u32;
|
1051
|
-
pub const WLAN_REASON_CODE_INVALID_PHY_TYPE: u32 = 524293u32;
|
1052
|
-
pub const WLAN_REASON_CODE_INVALID_PROFILE_NAME: u32 = 524291u32;
|
1053
|
-
pub const WLAN_REASON_CODE_INVALID_PROFILE_SCHEMA: u32 = 524289u32;
|
1054
|
-
pub const WLAN_REASON_CODE_INVALID_PROFILE_TYPE: u32 = 524292u32;
|
1055
|
-
pub const WLAN_REASON_CODE_IN_BLOCKED_LIST: u32 = 163847u32;
|
1056
|
-
pub const WLAN_REASON_CODE_IN_FAILED_LIST: u32 = 163846u32;
|
1057
|
-
pub const WLAN_REASON_CODE_KEY_MISMATCH: u32 = 163853u32;
|
1058
|
-
pub const WLAN_REASON_CODE_MSMSEC_AUTH_START_TIMEOUT: u32 = 294914u32;
|
1059
|
-
pub const WLAN_REASON_CODE_MSMSEC_AUTH_SUCCESS_TIMEOUT: u32 = 294915u32;
|
1060
|
-
pub const WLAN_REASON_CODE_MSMSEC_AUTH_WCN_COMPLETED: u32 = 294937u32;
|
1061
|
-
pub const WLAN_REASON_CODE_MSMSEC_BASE: u32 = 262144u32;
|
1062
|
-
pub const WLAN_REASON_CODE_MSMSEC_CANCELLED: u32 = 294929u32;
|
1063
|
-
pub const WLAN_REASON_CODE_MSMSEC_CAPABILITY_DISCOVERY: u32 = 262165u32;
|
1064
|
-
pub const WLAN_REASON_CODE_MSMSEC_CAPABILITY_MFP_NW_NIC: u32 = 262181u32;
|
1065
|
-
pub const WLAN_REASON_CODE_MSMSEC_CAPABILITY_NETWORK: u32 = 262162u32;
|
1066
|
-
pub const WLAN_REASON_CODE_MSMSEC_CAPABILITY_NIC: u32 = 262163u32;
|
1067
|
-
pub const WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE: u32 = 262164u32;
|
1068
|
-
pub const WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_AUTH: u32 = 262174u32;
|
1069
|
-
pub const WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_CIPHER: u32 = 262175u32;
|
1070
|
-
pub const WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_SAFE_MODE_NIC: u32 = 262177u32;
|
1071
|
-
pub const WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_SAFE_MODE_NW: u32 = 262178u32;
|
1072
|
-
pub const WLAN_REASON_CODE_MSMSEC_CONNECT_BASE: u32 = 294912u32;
|
1073
|
-
pub const WLAN_REASON_CODE_MSMSEC_DOWNGRADE_DETECTED: u32 = 294931u32;
|
1074
|
-
pub const WLAN_REASON_CODE_MSMSEC_END: u32 = 327679u32;
|
1075
|
-
pub const WLAN_REASON_CODE_MSMSEC_FORCED_FAILURE: u32 = 294933u32;
|
1076
|
-
pub const WLAN_REASON_CODE_MSMSEC_G1_MISSING_GRP_KEY: u32 = 294925u32;
|
1077
|
-
pub const WLAN_REASON_CODE_MSMSEC_G1_MISSING_KEY_DATA: u32 = 294924u32;
|
1078
|
-
pub const WLAN_REASON_CODE_MSMSEC_G1_MISSING_MGMT_GRP_KEY: u32 = 294939u32;
|
1079
|
-
pub const WLAN_REASON_CODE_MSMSEC_KEY_FORMAT: u32 = 294930u32;
|
1080
|
-
pub const WLAN_REASON_CODE_MSMSEC_KEY_START_TIMEOUT: u32 = 294916u32;
|
1081
|
-
pub const WLAN_REASON_CODE_MSMSEC_KEY_SUCCESS_TIMEOUT: u32 = 294917u32;
|
1082
|
-
pub const WLAN_REASON_CODE_MSMSEC_M2_MISSING_IE: u32 = 294936u32;
|
1083
|
-
pub const WLAN_REASON_CODE_MSMSEC_M2_MISSING_KEY_DATA: u32 = 294935u32;
|
1084
|
-
pub const WLAN_REASON_CODE_MSMSEC_M3_MISSING_GRP_KEY: u32 = 294920u32;
|
1085
|
-
pub const WLAN_REASON_CODE_MSMSEC_M3_MISSING_IE: u32 = 294919u32;
|
1086
|
-
pub const WLAN_REASON_CODE_MSMSEC_M3_MISSING_KEY_DATA: u32 = 294918u32;
|
1087
|
-
pub const WLAN_REASON_CODE_MSMSEC_M3_MISSING_MGMT_GRP_KEY: u32 = 294938u32;
|
1088
|
-
pub const WLAN_REASON_CODE_MSMSEC_M3_TOO_MANY_RSNIE: u32 = 294934u32;
|
1089
|
-
pub const WLAN_REASON_CODE_MSMSEC_MAX: u32 = 327679u32;
|
1090
|
-
pub const WLAN_REASON_CODE_MSMSEC_MIN: u32 = 262144u32;
|
1091
|
-
pub const WLAN_REASON_CODE_MSMSEC_MIXED_CELL: u32 = 262169u32;
|
1092
|
-
pub const WLAN_REASON_CODE_MSMSEC_NIC_FAILURE: u32 = 294928u32;
|
1093
|
-
pub const WLAN_REASON_CODE_MSMSEC_NO_AUTHENTICATOR: u32 = 294927u32;
|
1094
|
-
pub const WLAN_REASON_CODE_MSMSEC_NO_PAIRWISE_KEY: u32 = 294923u32;
|
1095
|
-
pub const WLAN_REASON_CODE_MSMSEC_PEER_INDICATED_INSECURE: u32 = 294926u32;
|
1096
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_AUTH_TIMERS_INVALID: u32 = 262170u32;
|
1097
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_DUPLICATE_AUTH_CIPHER: u32 = 262151u32;
|
1098
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_AUTH_CIPHER: u32 = 262153u32;
|
1099
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_GKEY_INTV: u32 = 262171u32;
|
1100
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_KEY_INDEX: u32 = 262145u32;
|
1101
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_MODE: u32 = 262156u32;
|
1102
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_SIZE: u32 = 262157u32;
|
1103
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_TTL: u32 = 262158u32;
|
1104
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PREAUTH_MODE: u32 = 262159u32;
|
1105
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PREAUTH_THROTTLE: u32 = 262160u32;
|
1106
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_KEYMATERIAL_CHAR: u32 = 262167u32;
|
1107
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_KEY_LENGTH: u32 = 262147u32;
|
1108
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_KEY_UNMAPPED_CHAR: u32 = 262173u32;
|
1109
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_NO_AUTH_CIPHER_SPECIFIED: u32 = 262149u32;
|
1110
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_ONEX_DISABLED: u32 = 262154u32;
|
1111
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_ONEX_ENABLED: u32 = 262155u32;
|
1112
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_PASSPHRASE_CHAR: u32 = 262166u32;
|
1113
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_PREAUTH_ONLY_ENABLED: u32 = 262161u32;
|
1114
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_PSK_LENGTH: u32 = 262148u32;
|
1115
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_PSK_PRESENT: u32 = 262146u32;
|
1116
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_RAWDATA_INVALID: u32 = 262152u32;
|
1117
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_SAFE_MODE: u32 = 262176u32;
|
1118
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_TOO_MANY_AUTH_CIPHER_SPECIFIED: u32 = 262150u32;
|
1119
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_UNSUPPORTED_AUTH: u32 = 262179u32;
|
1120
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_UNSUPPORTED_CIPHER: u32 = 262180u32;
|
1121
|
-
pub const WLAN_REASON_CODE_MSMSEC_PROFILE_WRONG_KEYTYPE: u32 = 262168u32;
|
1122
|
-
pub const WLAN_REASON_CODE_MSMSEC_PR_IE_MATCHING: u32 = 294921u32;
|
1123
|
-
pub const WLAN_REASON_CODE_MSMSEC_PSK_MISMATCH_SUSPECTED: u32 = 294932u32;
|
1124
|
-
pub const WLAN_REASON_CODE_MSMSEC_SEC_IE_MATCHING: u32 = 294922u32;
|
1125
|
-
pub const WLAN_REASON_CODE_MSMSEC_TRANSITION_NETWORK: u32 = 262172u32;
|
1126
|
-
pub const WLAN_REASON_CODE_MSMSEC_UI_REQUEST_FAILURE: u32 = 294913u32;
|
1127
|
-
pub const WLAN_REASON_CODE_MSM_BASE: u32 = 196608u32;
|
1128
|
-
pub const WLAN_REASON_CODE_MSM_CONNECT_BASE: u32 = 229376u32;
|
1129
|
-
pub const WLAN_REASON_CODE_MSM_END: u32 = 262143u32;
|
1130
|
-
pub const WLAN_REASON_CODE_MSM_SECURITY_MISSING: u32 = 524294u32;
|
1131
|
-
pub const WLAN_REASON_CODE_NETWORK_NOT_AVAILABLE: u32 = 163851u32;
|
1132
|
-
pub const WLAN_REASON_CODE_NETWORK_NOT_COMPATIBLE: u32 = 131073u32;
|
1133
|
-
pub const WLAN_REASON_CODE_NON_BROADCAST_SET_FOR_ADHOC: u32 = 524303u32;
|
1134
|
-
pub const WLAN_REASON_CODE_NOT_VISIBLE: u32 = 163842u32;
|
1135
|
-
pub const WLAN_REASON_CODE_NO_AUTO_CONNECTION: u32 = 163841u32;
|
1136
|
-
pub const WLAN_REASON_CODE_NO_VISIBLE_AP: u32 = 229396u32;
|
1137
|
-
pub const WLAN_REASON_CODE_OPERATION_MODE_NOT_SUPPORTED: u32 = 524312u32;
|
1138
|
-
pub const WLAN_REASON_CODE_PHY_TYPE_UNMATCH: u32 = 196612u32;
|
1139
|
-
pub const WLAN_REASON_CODE_PRE_SECURITY_FAILURE: u32 = 229380u32;
|
1140
|
-
pub const WLAN_REASON_CODE_PROFILE_BASE: u32 = 524288u32;
|
1141
|
-
pub const WLAN_REASON_CODE_PROFILE_CHANGED_OR_DELETED: u32 = 163852u32;
|
1142
|
-
pub const WLAN_REASON_CODE_PROFILE_CONNECT_BASE: u32 = 557056u32;
|
1143
|
-
pub const WLAN_REASON_CODE_PROFILE_END: u32 = 589823u32;
|
1144
|
-
pub const WLAN_REASON_CODE_PROFILE_MISSING: u32 = 524290u32;
|
1145
|
-
pub const WLAN_REASON_CODE_PROFILE_NOT_COMPATIBLE: u32 = 131074u32;
|
1146
|
-
pub const WLAN_REASON_CODE_PROFILE_SSID_INVALID: u32 = 524307u32;
|
1147
|
-
pub const WLAN_REASON_CODE_RANGE_SIZE: u32 = 65536u32;
|
1148
|
-
pub const WLAN_REASON_CODE_RESERVED_BASE: u32 = 720896u32;
|
1149
|
-
pub const WLAN_REASON_CODE_RESERVED_END: u32 = 786431u32;
|
1150
|
-
pub const WLAN_REASON_CODE_ROAMING_FAILURE: u32 = 229384u32;
|
1151
|
-
pub const WLAN_REASON_CODE_ROAMING_SECURITY_FAILURE: u32 = 229385u32;
|
1152
|
-
pub const WLAN_REASON_CODE_SCAN_CALL_FAIL: u32 = 163850u32;
|
1153
|
-
pub const WLAN_REASON_CODE_SECURITY_FAILURE: u32 = 229382u32;
|
1154
|
-
pub const WLAN_REASON_CODE_SECURITY_MISSING: u32 = 524300u32;
|
1155
|
-
pub const WLAN_REASON_CODE_SECURITY_TIMEOUT: u32 = 229383u32;
|
1156
|
-
pub const WLAN_REASON_CODE_SSID_LIST_TOO_LONG: u32 = 163848u32;
|
1157
|
-
pub const WLAN_REASON_CODE_START_SECURITY_FAILURE: u32 = 229381u32;
|
1158
|
-
pub const WLAN_REASON_CODE_SUCCESS: u32 = 0u32;
|
1159
|
-
pub const WLAN_REASON_CODE_TOO_MANY_SECURITY_ATTEMPTS: u32 = 229394u32;
|
1160
|
-
pub const WLAN_REASON_CODE_TOO_MANY_SSID: u32 = 524308u32;
|
1161
|
-
pub const WLAN_REASON_CODE_UI_REQUEST_TIMEOUT: u32 = 229393u32;
|
1162
|
-
pub const WLAN_REASON_CODE_UNKNOWN: u32 = 65537u32;
|
1163
|
-
pub const WLAN_REASON_CODE_UNSUPPORTED_SECURITY_SET: u32 = 196610u32;
|
1164
|
-
pub const WLAN_REASON_CODE_UNSUPPORTED_SECURITY_SET_BY_OS: u32 = 196609u32;
|
1165
|
-
pub const WLAN_REASON_CODE_USER_CANCELLED: u32 = 229377u32;
|
1166
|
-
pub const WLAN_REASON_CODE_USER_DENIED: u32 = 163844u32;
|
1167
|
-
pub const WLAN_REASON_CODE_USER_NOT_RESPOND: u32 = 163854u32;
|
1168
|
-
pub const WLAN_SECURABLE_OBJECT_COUNT: WLAN_SECURABLE_OBJECT = 17i32;
|
1169
|
-
pub const WLAN_SET_EAPHOST_DATA_ALL_USERS: WLAN_SET_EAPHOST_FLAGS = 1u32;
|
1170
|
-
pub const WLAN_UI_API_INITIAL_VERSION: u32 = 1u32;
|
1171
|
-
pub const WLAN_UI_API_VERSION: u32 = 1u32;
|
1172
|
-
pub const WLAdvPage: WL_DISPLAY_PAGES = 2i32;
|
1173
|
-
pub const WLConnectionPage: WL_DISPLAY_PAGES = 0i32;
|
1174
|
-
pub const WLSecurityPage: WL_DISPLAY_PAGES = 1i32;
|
1175
|
-
pub const ch_description_type_center_frequency: CH_DESCRIPTION_TYPE = 2i32;
|
1176
|
-
pub const ch_description_type_logical: CH_DESCRIPTION_TYPE = 1i32;
|
1177
|
-
pub const ch_description_type_phy_specific: CH_DESCRIPTION_TYPE = 3i32;
|
1178
|
-
pub const connection_phase_any: DOT11EXT_IHV_CONNECTION_PHASE = 0i32;
|
1179
|
-
pub const connection_phase_initial_connection: DOT11EXT_IHV_CONNECTION_PHASE = 1i32;
|
1180
|
-
pub const connection_phase_post_l3_connection: DOT11EXT_IHV_CONNECTION_PHASE = 2i32;
|
1181
|
-
pub const dot11_AC_param_BE: DOT11_AC_PARAM = 0i32;
|
1182
|
-
pub const dot11_AC_param_BK: DOT11_AC_PARAM = 1i32;
|
1183
|
-
pub const dot11_AC_param_VI: DOT11_AC_PARAM = 2i32;
|
1184
|
-
pub const dot11_AC_param_VO: DOT11_AC_PARAM = 3i32;
|
1185
|
-
pub const dot11_AC_param_max: DOT11_AC_PARAM = 4i32;
|
1186
|
-
pub const dot11_ANQP_query_result_access_issues: DOT11_ANQP_QUERY_RESULT = 7i32;
|
1187
|
-
pub const dot11_ANQP_query_result_advertisement_protocol_not_supported_on_remote: DOT11_ANQP_QUERY_RESULT = 4i32;
|
1188
|
-
pub const dot11_ANQP_query_result_advertisement_server_not_responding: DOT11_ANQP_QUERY_RESULT = 6i32;
|
1189
|
-
pub const dot11_ANQP_query_result_failure: DOT11_ANQP_QUERY_RESULT = 1i32;
|
1190
|
-
pub const dot11_ANQP_query_result_gas_protocol_failure: DOT11_ANQP_QUERY_RESULT = 5i32;
|
1191
|
-
pub const dot11_ANQP_query_result_resources: DOT11_ANQP_QUERY_RESULT = 3i32;
|
1192
|
-
pub const dot11_ANQP_query_result_success: DOT11_ANQP_QUERY_RESULT = 0i32;
|
1193
|
-
pub const dot11_ANQP_query_result_timed_out: DOT11_ANQP_QUERY_RESULT = 2i32;
|
1194
|
-
pub const dot11_BSS_type_any: DOT11_BSS_TYPE = 3i32;
|
1195
|
-
pub const dot11_BSS_type_independent: DOT11_BSS_TYPE = 2i32;
|
1196
|
-
pub const dot11_BSS_type_infrastructure: DOT11_BSS_TYPE = 1i32;
|
1197
|
-
pub const dot11_assoc_state_auth_assoc: DOT11_ASSOCIATION_STATE = 3i32;
|
1198
|
-
pub const dot11_assoc_state_auth_unassoc: DOT11_ASSOCIATION_STATE = 2i32;
|
1199
|
-
pub const dot11_assoc_state_unauth_unassoc: DOT11_ASSOCIATION_STATE = 1i32;
|
1200
|
-
pub const dot11_assoc_state_zero: DOT11_ASSOCIATION_STATE = 0i32;
|
1201
|
-
pub const dot11_band_2p4g: DOT11_BAND = 1i32;
|
1202
|
-
pub const dot11_band_4p9g: DOT11_BAND = 2i32;
|
1203
|
-
pub const dot11_band_5g: DOT11_BAND = 3i32;
|
1204
|
-
pub const dot11_diversity_support_dynamic: DOT11_DIVERSITY_SUPPORT = 3i32;
|
1205
|
-
pub const dot11_diversity_support_fixedlist: DOT11_DIVERSITY_SUPPORT = 1i32;
|
1206
|
-
pub const dot11_diversity_support_notsupported: DOT11_DIVERSITY_SUPPORT = 2i32;
|
1207
|
-
pub const dot11_diversity_support_unknown: DOT11_DIVERSITY_SUPPORT = 0i32;
|
1208
|
-
pub const dot11_hop_algo_current: DOT11_HOP_ALGO_ADOPTED = 0i32;
|
1209
|
-
pub const dot11_hop_algo_hcc: DOT11_HOP_ALGO_ADOPTED = 2i32;
|
1210
|
-
pub const dot11_hop_algo_hop_index: DOT11_HOP_ALGO_ADOPTED = 1i32;
|
1211
|
-
pub const dot11_key_direction_both: DOT11_KEY_DIRECTION = 1i32;
|
1212
|
-
pub const dot11_key_direction_inbound: DOT11_KEY_DIRECTION = 2i32;
|
1213
|
-
pub const dot11_key_direction_outbound: DOT11_KEY_DIRECTION = 3i32;
|
1214
|
-
pub const dot11_manufacturing_callback_IHV_end: DOT11_MANUFACTURING_CALLBACK_TYPE = -1i32;
|
1215
|
-
pub const dot11_manufacturing_callback_IHV_start: DOT11_MANUFACTURING_CALLBACK_TYPE = -2147483648i32;
|
1216
|
-
pub const dot11_manufacturing_callback_self_test_complete: DOT11_MANUFACTURING_CALLBACK_TYPE = 1i32;
|
1217
|
-
pub const dot11_manufacturing_callback_sleep_complete: DOT11_MANUFACTURING_CALLBACK_TYPE = 2i32;
|
1218
|
-
pub const dot11_manufacturing_callback_unknown: DOT11_MANUFACTURING_CALLBACK_TYPE = 0i32;
|
1219
|
-
pub const dot11_manufacturing_test_IHV_end: DOT11_MANUFACTURING_TEST_TYPE = -1i32;
|
1220
|
-
pub const dot11_manufacturing_test_IHV_start: DOT11_MANUFACTURING_TEST_TYPE = -2147483648i32;
|
1221
|
-
pub const dot11_manufacturing_test_awake: DOT11_MANUFACTURING_TEST_TYPE = 9i32;
|
1222
|
-
pub const dot11_manufacturing_test_query_adc: DOT11_MANUFACTURING_TEST_TYPE = 5i32;
|
1223
|
-
pub const dot11_manufacturing_test_query_data: DOT11_MANUFACTURING_TEST_TYPE = 7i32;
|
1224
|
-
pub const dot11_manufacturing_test_rx: DOT11_MANUFACTURING_TEST_TYPE = 3i32;
|
1225
|
-
pub const dot11_manufacturing_test_self_query_result: DOT11_MANUFACTURING_TEST_TYPE = 2i32;
|
1226
|
-
pub const dot11_manufacturing_test_self_start: DOT11_MANUFACTURING_TEST_TYPE = 1i32;
|
1227
|
-
pub const dot11_manufacturing_test_set_data: DOT11_MANUFACTURING_TEST_TYPE = 6i32;
|
1228
|
-
pub const dot11_manufacturing_test_sleep: DOT11_MANUFACTURING_TEST_TYPE = 8i32;
|
1229
|
-
pub const dot11_manufacturing_test_tx: DOT11_MANUFACTURING_TEST_TYPE = 4i32;
|
1230
|
-
pub const dot11_manufacturing_test_unknown: DOT11_MANUFACTURING_TEST_TYPE = 0i32;
|
1231
|
-
pub const dot11_offload_type_auth: DOT11_OFFLOAD_TYPE = 2i32;
|
1232
|
-
pub const dot11_offload_type_wep: DOT11_OFFLOAD_TYPE = 1i32;
|
1233
|
-
pub const dot11_phy_type_IHV_end: DOT11_PHY_TYPE = -1i32;
|
1234
|
-
pub const dot11_phy_type_IHV_start: DOT11_PHY_TYPE = -2147483648i32;
|
1235
|
-
pub const dot11_phy_type_any: DOT11_PHY_TYPE = 0i32;
|
1236
|
-
pub const dot11_phy_type_dmg: DOT11_PHY_TYPE = 9i32;
|
1237
|
-
pub const dot11_phy_type_dsss: DOT11_PHY_TYPE = 2i32;
|
1238
|
-
pub const dot11_phy_type_eht: DOT11_PHY_TYPE = 11i32;
|
1239
|
-
pub const dot11_phy_type_erp: DOT11_PHY_TYPE = 6i32;
|
1240
|
-
pub const dot11_phy_type_fhss: DOT11_PHY_TYPE = 1i32;
|
1241
|
-
pub const dot11_phy_type_he: DOT11_PHY_TYPE = 10i32;
|
1242
|
-
pub const dot11_phy_type_hrdsss: DOT11_PHY_TYPE = 5i32;
|
1243
|
-
pub const dot11_phy_type_ht: DOT11_PHY_TYPE = 7i32;
|
1244
|
-
pub const dot11_phy_type_irbaseband: DOT11_PHY_TYPE = 3i32;
|
1245
|
-
pub const dot11_phy_type_ofdm: DOT11_PHY_TYPE = 4i32;
|
1246
|
-
pub const dot11_phy_type_unknown: DOT11_PHY_TYPE = 0i32;
|
1247
|
-
pub const dot11_phy_type_vht: DOT11_PHY_TYPE = 8i32;
|
1248
|
-
pub const dot11_power_mode_active: DOT11_POWER_MODE = 1i32;
|
1249
|
-
pub const dot11_power_mode_powersave: DOT11_POWER_MODE = 2i32;
|
1250
|
-
pub const dot11_power_mode_reason_compliant_AP: DOT11_POWER_MODE_REASON = 3i32;
|
1251
|
-
pub const dot11_power_mode_reason_compliant_WFD_device: DOT11_POWER_MODE_REASON = 4i32;
|
1252
|
-
pub const dot11_power_mode_reason_legacy_WFD_device: DOT11_POWER_MODE_REASON = 2i32;
|
1253
|
-
pub const dot11_power_mode_reason_no_change: DOT11_POWER_MODE_REASON = 0i32;
|
1254
|
-
pub const dot11_power_mode_reason_noncompliant_AP: DOT11_POWER_MODE_REASON = 1i32;
|
1255
|
-
pub const dot11_power_mode_reason_others: DOT11_POWER_MODE_REASON = 5i32;
|
1256
|
-
pub const dot11_power_mode_unknown: DOT11_POWER_MODE = 0i32;
|
1257
|
-
pub const dot11_radio_state_off: DOT11_RADIO_STATE = 2i32;
|
1258
|
-
pub const dot11_radio_state_on: DOT11_RADIO_STATE = 1i32;
|
1259
|
-
pub const dot11_radio_state_unknown: DOT11_RADIO_STATE = 0i32;
|
1260
|
-
pub const dot11_reset_type_mac: DOT11_RESET_TYPE = 2i32;
|
1261
|
-
pub const dot11_reset_type_phy: DOT11_RESET_TYPE = 1i32;
|
1262
|
-
pub const dot11_reset_type_phy_and_mac: DOT11_RESET_TYPE = 3i32;
|
1263
|
-
pub const dot11_scan_type_active: DOT11_SCAN_TYPE = 1i32;
|
1264
|
-
pub const dot11_scan_type_auto: DOT11_SCAN_TYPE = 3i32;
|
1265
|
-
pub const dot11_scan_type_forced: DOT11_SCAN_TYPE = -2147483648i32;
|
1266
|
-
pub const dot11_scan_type_passive: DOT11_SCAN_TYPE = 2i32;
|
1267
|
-
pub const dot11_temp_type_1: DOT11_TEMP_TYPE = 1i32;
|
1268
|
-
pub const dot11_temp_type_2: DOT11_TEMP_TYPE = 2i32;
|
1269
|
-
pub const dot11_temp_type_unknown: DOT11_TEMP_TYPE = 0i32;
|
1270
|
-
pub const dot11_update_ie_op_create_replace: DOT11_UPDATE_IE_OP = 1i32;
|
1271
|
-
pub const dot11_update_ie_op_delete: DOT11_UPDATE_IE_OP = 2i32;
|
1272
|
-
pub const dot11_wfd_discover_type_auto: DOT11_WFD_DISCOVER_TYPE = 3i32;
|
1273
|
-
pub const dot11_wfd_discover_type_find_only: DOT11_WFD_DISCOVER_TYPE = 2i32;
|
1274
|
-
pub const dot11_wfd_discover_type_forced: DOT11_WFD_DISCOVER_TYPE = -2147483648i32;
|
1275
|
-
pub const dot11_wfd_discover_type_scan_only: DOT11_WFD_DISCOVER_TYPE = 1i32;
|
1276
|
-
pub const dot11_wfd_discover_type_scan_social_channels: DOT11_WFD_DISCOVER_TYPE = 4i32;
|
1277
|
-
pub const dot11_wfd_scan_type_active: DOT11_WFD_SCAN_TYPE = 1i32;
|
1278
|
-
pub const dot11_wfd_scan_type_auto: DOT11_WFD_SCAN_TYPE = 3i32;
|
1279
|
-
pub const dot11_wfd_scan_type_passive: DOT11_WFD_SCAN_TYPE = 2i32;
|
1280
|
-
pub const wlan_adhoc_network_state_connected: WLAN_ADHOC_NETWORK_STATE = 1i32;
|
1281
|
-
pub const wlan_adhoc_network_state_formed: WLAN_ADHOC_NETWORK_STATE = 0i32;
|
1282
|
-
pub const wlan_autoconf_opcode_allow_explicit_creds: WLAN_AUTOCONF_OPCODE = 4i32;
|
1283
|
-
pub const wlan_autoconf_opcode_allow_virtual_station_extensibility: WLAN_AUTOCONF_OPCODE = 6i32;
|
1284
|
-
pub const wlan_autoconf_opcode_block_period: WLAN_AUTOCONF_OPCODE = 5i32;
|
1285
|
-
pub const wlan_autoconf_opcode_end: WLAN_AUTOCONF_OPCODE = 7i32;
|
1286
|
-
pub const wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks: WLAN_AUTOCONF_OPCODE = 3i32;
|
1287
|
-
pub const wlan_autoconf_opcode_power_setting: WLAN_AUTOCONF_OPCODE = 2i32;
|
1288
|
-
pub const wlan_autoconf_opcode_show_denied_networks: WLAN_AUTOCONF_OPCODE = 1i32;
|
1289
|
-
pub const wlan_autoconf_opcode_start: WLAN_AUTOCONF_OPCODE = 0i32;
|
1290
|
-
pub const wlan_connection_mode_auto: WLAN_CONNECTION_MODE = 4i32;
|
1291
|
-
pub const wlan_connection_mode_discovery_secure: WLAN_CONNECTION_MODE = 2i32;
|
1292
|
-
pub const wlan_connection_mode_discovery_unsecure: WLAN_CONNECTION_MODE = 3i32;
|
1293
|
-
pub const wlan_connection_mode_invalid: WLAN_CONNECTION_MODE = 5i32;
|
1294
|
-
pub const wlan_connection_mode_profile: WLAN_CONNECTION_MODE = 0i32;
|
1295
|
-
pub const wlan_connection_mode_temporary_profile: WLAN_CONNECTION_MODE = 1i32;
|
1296
|
-
pub const wlan_filter_list_type_gp_deny: WLAN_FILTER_LIST_TYPE = 1i32;
|
1297
|
-
pub const wlan_filter_list_type_gp_permit: WLAN_FILTER_LIST_TYPE = 0i32;
|
1298
|
-
pub const wlan_filter_list_type_user_deny: WLAN_FILTER_LIST_TYPE = 3i32;
|
1299
|
-
pub const wlan_filter_list_type_user_permit: WLAN_FILTER_LIST_TYPE = 2i32;
|
1300
|
-
pub const wlan_hosted_network_active: WLAN_HOSTED_NETWORK_STATE = 2i32;
|
1301
|
-
pub const wlan_hosted_network_idle: WLAN_HOSTED_NETWORK_STATE = 1i32;
|
1302
|
-
pub const wlan_hosted_network_opcode_connection_settings: WLAN_HOSTED_NETWORK_OPCODE = 0i32;
|
1303
|
-
pub const wlan_hosted_network_opcode_enable: WLAN_HOSTED_NETWORK_OPCODE = 3i32;
|
1304
|
-
pub const wlan_hosted_network_opcode_security_settings: WLAN_HOSTED_NETWORK_OPCODE = 1i32;
|
1305
|
-
pub const wlan_hosted_network_opcode_station_profile: WLAN_HOSTED_NETWORK_OPCODE = 2i32;
|
1306
|
-
pub const wlan_hosted_network_peer_state_authenticated: WLAN_HOSTED_NETWORK_PEER_AUTH_STATE = 1i32;
|
1307
|
-
pub const wlan_hosted_network_peer_state_change: WLAN_HOSTED_NETWORK_NOTIFICATION_CODE = 4097i32;
|
1308
|
-
pub const wlan_hosted_network_peer_state_invalid: WLAN_HOSTED_NETWORK_PEER_AUTH_STATE = 0i32;
|
1309
|
-
pub const wlan_hosted_network_radio_state_change: WLAN_HOSTED_NETWORK_NOTIFICATION_CODE = 4098i32;
|
1310
|
-
pub const wlan_hosted_network_reason_ap_start_failed: WLAN_HOSTED_NETWORK_REASON = 19i32;
|
1311
|
-
pub const wlan_hosted_network_reason_bad_parameters: WLAN_HOSTED_NETWORK_REASON = 2i32;
|
1312
|
-
pub const wlan_hosted_network_reason_client_abort: WLAN_HOSTED_NETWORK_REASON = 18i32;
|
1313
|
-
pub const wlan_hosted_network_reason_crypt_error: WLAN_HOSTED_NETWORK_REASON = 8i32;
|
1314
|
-
pub const wlan_hosted_network_reason_device_change: WLAN_HOSTED_NETWORK_REASON = 25i32;
|
1315
|
-
pub const wlan_hosted_network_reason_elevation_required: WLAN_HOSTED_NETWORK_REASON = 5i32;
|
1316
|
-
pub const wlan_hosted_network_reason_gp_denied: WLAN_HOSTED_NETWORK_REASON = 23i32;
|
1317
|
-
pub const wlan_hosted_network_reason_impersonation: WLAN_HOSTED_NETWORK_REASON = 9i32;
|
1318
|
-
pub const wlan_hosted_network_reason_incompatible_connection_started: WLAN_HOSTED_NETWORK_REASON = 15i32;
|
1319
|
-
pub const wlan_hosted_network_reason_incompatible_connection_stopped: WLAN_HOSTED_NETWORK_REASON = 16i32;
|
1320
|
-
pub const wlan_hosted_network_reason_insufficient_resources: WLAN_HOSTED_NETWORK_REASON = 4i32;
|
1321
|
-
pub const wlan_hosted_network_reason_interface_available: WLAN_HOSTED_NETWORK_REASON = 11i32;
|
1322
|
-
pub const wlan_hosted_network_reason_interface_unavailable: WLAN_HOSTED_NETWORK_REASON = 12i32;
|
1323
|
-
pub const wlan_hosted_network_reason_miniport_started: WLAN_HOSTED_NETWORK_REASON = 14i32;
|
1324
|
-
pub const wlan_hosted_network_reason_miniport_stopped: WLAN_HOSTED_NETWORK_REASON = 13i32;
|
1325
|
-
pub const wlan_hosted_network_reason_peer_arrived: WLAN_HOSTED_NETWORK_REASON = 20i32;
|
1326
|
-
pub const wlan_hosted_network_reason_peer_departed: WLAN_HOSTED_NETWORK_REASON = 21i32;
|
1327
|
-
pub const wlan_hosted_network_reason_peer_timeout: WLAN_HOSTED_NETWORK_REASON = 22i32;
|
1328
|
-
pub const wlan_hosted_network_reason_persistence_failed: WLAN_HOSTED_NETWORK_REASON = 7i32;
|
1329
|
-
pub const wlan_hosted_network_reason_properties_change: WLAN_HOSTED_NETWORK_REASON = 26i32;
|
1330
|
-
pub const wlan_hosted_network_reason_read_only: WLAN_HOSTED_NETWORK_REASON = 6i32;
|
1331
|
-
pub const wlan_hosted_network_reason_service_available_on_virtual_station: WLAN_HOSTED_NETWORK_REASON = 28i32;
|
1332
|
-
pub const wlan_hosted_network_reason_service_shutting_down: WLAN_HOSTED_NETWORK_REASON = 3i32;
|
1333
|
-
pub const wlan_hosted_network_reason_service_unavailable: WLAN_HOSTED_NETWORK_REASON = 24i32;
|
1334
|
-
pub const wlan_hosted_network_reason_stop_before_start: WLAN_HOSTED_NETWORK_REASON = 10i32;
|
1335
|
-
pub const wlan_hosted_network_reason_success: WLAN_HOSTED_NETWORK_REASON = 0i32;
|
1336
|
-
pub const wlan_hosted_network_reason_unspecified: WLAN_HOSTED_NETWORK_REASON = 1i32;
|
1337
|
-
pub const wlan_hosted_network_reason_user_action: WLAN_HOSTED_NETWORK_REASON = 17i32;
|
1338
|
-
pub const wlan_hosted_network_reason_virtual_station_blocking_use: WLAN_HOSTED_NETWORK_REASON = 27i32;
|
1339
|
-
pub const wlan_hosted_network_state_change: WLAN_HOSTED_NETWORK_NOTIFICATION_CODE = 4096i32;
|
1340
|
-
pub const wlan_hosted_network_unavailable: WLAN_HOSTED_NETWORK_STATE = 0i32;
|
1341
|
-
pub const wlan_ihv_control_type_driver: WLAN_IHV_CONTROL_TYPE = 1i32;
|
1342
|
-
pub const wlan_ihv_control_type_service: WLAN_IHV_CONTROL_TYPE = 0i32;
|
1343
|
-
pub const wlan_interface_state_ad_hoc_network_formed: WLAN_INTERFACE_STATE = 2i32;
|
1344
|
-
pub const wlan_interface_state_associating: WLAN_INTERFACE_STATE = 5i32;
|
1345
|
-
pub const wlan_interface_state_authenticating: WLAN_INTERFACE_STATE = 7i32;
|
1346
|
-
pub const wlan_interface_state_connected: WLAN_INTERFACE_STATE = 1i32;
|
1347
|
-
pub const wlan_interface_state_disconnected: WLAN_INTERFACE_STATE = 4i32;
|
1348
|
-
pub const wlan_interface_state_disconnecting: WLAN_INTERFACE_STATE = 3i32;
|
1349
|
-
pub const wlan_interface_state_discovering: WLAN_INTERFACE_STATE = 6i32;
|
1350
|
-
pub const wlan_interface_state_not_ready: WLAN_INTERFACE_STATE = 0i32;
|
1351
|
-
pub const wlan_interface_type_emulated_802_11: WLAN_INTERFACE_TYPE = 0i32;
|
1352
|
-
pub const wlan_interface_type_invalid: WLAN_INTERFACE_TYPE = 2i32;
|
1353
|
-
pub const wlan_interface_type_native_802_11: WLAN_INTERFACE_TYPE = 1i32;
|
1354
|
-
pub const wlan_intf_opcode_autoconf_enabled: WLAN_INTF_OPCODE = 1i32;
|
1355
|
-
pub const wlan_intf_opcode_autoconf_end: WLAN_INTF_OPCODE = 268435455i32;
|
1356
|
-
pub const wlan_intf_opcode_autoconf_start: WLAN_INTF_OPCODE = 0i32;
|
1357
|
-
pub const wlan_intf_opcode_background_scan_enabled: WLAN_INTF_OPCODE = 2i32;
|
1358
|
-
pub const wlan_intf_opcode_bss_type: WLAN_INTF_OPCODE = 5i32;
|
1359
|
-
pub const wlan_intf_opcode_certified_safe_mode: WLAN_INTF_OPCODE = 14i32;
|
1360
|
-
pub const wlan_intf_opcode_channel_number: WLAN_INTF_OPCODE = 8i32;
|
1361
|
-
pub const wlan_intf_opcode_current_connection: WLAN_INTF_OPCODE = 7i32;
|
1362
|
-
pub const wlan_intf_opcode_current_operation_mode: WLAN_INTF_OPCODE = 12i32;
|
1363
|
-
pub const wlan_intf_opcode_hosted_network_capable: WLAN_INTF_OPCODE = 15i32;
|
1364
|
-
pub const wlan_intf_opcode_ihv_end: WLAN_INTF_OPCODE = 1073741823i32;
|
1365
|
-
pub const wlan_intf_opcode_ihv_start: WLAN_INTF_OPCODE = 805306368i32;
|
1366
|
-
pub const wlan_intf_opcode_interface_state: WLAN_INTF_OPCODE = 6i32;
|
1367
|
-
pub const wlan_intf_opcode_management_frame_protection_capable: WLAN_INTF_OPCODE = 16i32;
|
1368
|
-
pub const wlan_intf_opcode_media_streaming_mode: WLAN_INTF_OPCODE = 3i32;
|
1369
|
-
pub const wlan_intf_opcode_msm_end: WLAN_INTF_OPCODE = 536870911i32;
|
1370
|
-
pub const wlan_intf_opcode_msm_start: WLAN_INTF_OPCODE = 268435712i32;
|
1371
|
-
pub const wlan_intf_opcode_radio_state: WLAN_INTF_OPCODE = 4i32;
|
1372
|
-
pub const wlan_intf_opcode_rssi: WLAN_INTF_OPCODE = 268435714i32;
|
1373
|
-
pub const wlan_intf_opcode_secondary_sta_interfaces: WLAN_INTF_OPCODE = 17i32;
|
1374
|
-
pub const wlan_intf_opcode_secondary_sta_synchronized_connections: WLAN_INTF_OPCODE = 18i32;
|
1375
|
-
pub const wlan_intf_opcode_security_end: WLAN_INTF_OPCODE = 805306367i32;
|
1376
|
-
pub const wlan_intf_opcode_security_start: WLAN_INTF_OPCODE = 536936448i32;
|
1377
|
-
pub const wlan_intf_opcode_statistics: WLAN_INTF_OPCODE = 268435713i32;
|
1378
|
-
pub const wlan_intf_opcode_supported_adhoc_auth_cipher_pairs: WLAN_INTF_OPCODE = 10i32;
|
1379
|
-
pub const wlan_intf_opcode_supported_country_or_region_string_list: WLAN_INTF_OPCODE = 11i32;
|
1380
|
-
pub const wlan_intf_opcode_supported_infrastructure_auth_cipher_pairs: WLAN_INTF_OPCODE = 9i32;
|
1381
|
-
pub const wlan_intf_opcode_supported_safe_mode: WLAN_INTF_OPCODE = 13i32;
|
1382
|
-
pub const wlan_notification_acm_adhoc_network_state_change: WLAN_NOTIFICATION_ACM = 22i32;
|
1383
|
-
pub const wlan_notification_acm_autoconf_disabled: WLAN_NOTIFICATION_ACM = 2i32;
|
1384
|
-
pub const wlan_notification_acm_autoconf_enabled: WLAN_NOTIFICATION_ACM = 1i32;
|
1385
|
-
pub const wlan_notification_acm_background_scan_disabled: WLAN_NOTIFICATION_ACM = 4i32;
|
1386
|
-
pub const wlan_notification_acm_background_scan_enabled: WLAN_NOTIFICATION_ACM = 3i32;
|
1387
|
-
pub const wlan_notification_acm_bss_type_change: WLAN_NOTIFICATION_ACM = 5i32;
|
1388
|
-
pub const wlan_notification_acm_connection_attempt_fail: WLAN_NOTIFICATION_ACM = 11i32;
|
1389
|
-
pub const wlan_notification_acm_connection_complete: WLAN_NOTIFICATION_ACM = 10i32;
|
1390
|
-
pub const wlan_notification_acm_connection_start: WLAN_NOTIFICATION_ACM = 9i32;
|
1391
|
-
pub const wlan_notification_acm_disconnected: WLAN_NOTIFICATION_ACM = 21i32;
|
1392
|
-
pub const wlan_notification_acm_disconnecting: WLAN_NOTIFICATION_ACM = 20i32;
|
1393
|
-
pub const wlan_notification_acm_end: WLAN_NOTIFICATION_ACM = 28i32;
|
1394
|
-
pub const wlan_notification_acm_filter_list_change: WLAN_NOTIFICATION_ACM = 12i32;
|
1395
|
-
pub const wlan_notification_acm_interface_arrival: WLAN_NOTIFICATION_ACM = 13i32;
|
1396
|
-
pub const wlan_notification_acm_interface_removal: WLAN_NOTIFICATION_ACM = 14i32;
|
1397
|
-
pub const wlan_notification_acm_network_available: WLAN_NOTIFICATION_ACM = 19i32;
|
1398
|
-
pub const wlan_notification_acm_network_not_available: WLAN_NOTIFICATION_ACM = 18i32;
|
1399
|
-
pub const wlan_notification_acm_operational_state_change: WLAN_NOTIFICATION_ACM = 27i32;
|
1400
|
-
pub const wlan_notification_acm_power_setting_change: WLAN_NOTIFICATION_ACM = 6i32;
|
1401
|
-
pub const wlan_notification_acm_profile_blocked: WLAN_NOTIFICATION_ACM = 25i32;
|
1402
|
-
pub const wlan_notification_acm_profile_change: WLAN_NOTIFICATION_ACM = 15i32;
|
1403
|
-
pub const wlan_notification_acm_profile_name_change: WLAN_NOTIFICATION_ACM = 16i32;
|
1404
|
-
pub const wlan_notification_acm_profile_unblocked: WLAN_NOTIFICATION_ACM = 23i32;
|
1405
|
-
pub const wlan_notification_acm_profiles_exhausted: WLAN_NOTIFICATION_ACM = 17i32;
|
1406
|
-
pub const wlan_notification_acm_scan_complete: WLAN_NOTIFICATION_ACM = 7i32;
|
1407
|
-
pub const wlan_notification_acm_scan_fail: WLAN_NOTIFICATION_ACM = 8i32;
|
1408
|
-
pub const wlan_notification_acm_scan_list_refresh: WLAN_NOTIFICATION_ACM = 26i32;
|
1409
|
-
pub const wlan_notification_acm_screen_power_change: WLAN_NOTIFICATION_ACM = 24i32;
|
1410
|
-
pub const wlan_notification_acm_start: WLAN_NOTIFICATION_ACM = 0i32;
|
1411
|
-
pub const wlan_notification_msm_adapter_operation_mode_change: WLAN_NOTIFICATION_MSM = 14i32;
|
1412
|
-
pub const wlan_notification_msm_adapter_removal: WLAN_NOTIFICATION_MSM = 13i32;
|
1413
|
-
pub const wlan_notification_msm_associated: WLAN_NOTIFICATION_MSM = 2i32;
|
1414
|
-
pub const wlan_notification_msm_associating: WLAN_NOTIFICATION_MSM = 1i32;
|
1415
|
-
pub const wlan_notification_msm_authenticating: WLAN_NOTIFICATION_MSM = 3i32;
|
1416
|
-
pub const wlan_notification_msm_connected: WLAN_NOTIFICATION_MSM = 4i32;
|
1417
|
-
pub const wlan_notification_msm_disassociating: WLAN_NOTIFICATION_MSM = 9i32;
|
1418
|
-
pub const wlan_notification_msm_disconnected: WLAN_NOTIFICATION_MSM = 10i32;
|
1419
|
-
pub const wlan_notification_msm_end: WLAN_NOTIFICATION_MSM = 17i32;
|
1420
|
-
pub const wlan_notification_msm_link_degraded: WLAN_NOTIFICATION_MSM = 15i32;
|
1421
|
-
pub const wlan_notification_msm_link_improved: WLAN_NOTIFICATION_MSM = 16i32;
|
1422
|
-
pub const wlan_notification_msm_peer_join: WLAN_NOTIFICATION_MSM = 11i32;
|
1423
|
-
pub const wlan_notification_msm_peer_leave: WLAN_NOTIFICATION_MSM = 12i32;
|
1424
|
-
pub const wlan_notification_msm_radio_state_change: WLAN_NOTIFICATION_MSM = 7i32;
|
1425
|
-
pub const wlan_notification_msm_roaming_end: WLAN_NOTIFICATION_MSM = 6i32;
|
1426
|
-
pub const wlan_notification_msm_roaming_start: WLAN_NOTIFICATION_MSM = 5i32;
|
1427
|
-
pub const wlan_notification_msm_signal_quality_change: WLAN_NOTIFICATION_MSM = 8i32;
|
1428
|
-
pub const wlan_notification_msm_start: WLAN_NOTIFICATION_MSM = 0i32;
|
1429
|
-
pub const wlan_notification_security_end: WLAN_NOTIFICATION_SECURITY = 1i32;
|
1430
|
-
pub const wlan_notification_security_start: WLAN_NOTIFICATION_SECURITY = 0i32;
|
1431
|
-
pub const wlan_opcode_value_type_invalid: WLAN_OPCODE_VALUE_TYPE = 3i32;
|
1432
|
-
pub const wlan_opcode_value_type_query_only: WLAN_OPCODE_VALUE_TYPE = 0i32;
|
1433
|
-
pub const wlan_opcode_value_type_set_by_group_policy: WLAN_OPCODE_VALUE_TYPE = 1i32;
|
1434
|
-
pub const wlan_opcode_value_type_set_by_user: WLAN_OPCODE_VALUE_TYPE = 2i32;
|
1435
|
-
pub const wlan_operational_state_going_off: WLAN_OPERATIONAL_STATE = 3i32;
|
1436
|
-
pub const wlan_operational_state_going_on: WLAN_OPERATIONAL_STATE = 4i32;
|
1437
|
-
pub const wlan_operational_state_off: WLAN_OPERATIONAL_STATE = 1i32;
|
1438
|
-
pub const wlan_operational_state_on: WLAN_OPERATIONAL_STATE = 2i32;
|
1439
|
-
pub const wlan_operational_state_unknown: WLAN_OPERATIONAL_STATE = 0i32;
|
1440
|
-
pub const wlan_power_setting_invalid: WLAN_POWER_SETTING = 4i32;
|
1441
|
-
pub const wlan_power_setting_low_saving: WLAN_POWER_SETTING = 1i32;
|
1442
|
-
pub const wlan_power_setting_maximum_saving: WLAN_POWER_SETTING = 3i32;
|
1443
|
-
pub const wlan_power_setting_medium_saving: WLAN_POWER_SETTING = 2i32;
|
1444
|
-
pub const wlan_power_setting_no_saving: WLAN_POWER_SETTING = 0i32;
|
1445
|
-
pub const wlan_secure_ac_enabled: WLAN_SECURABLE_OBJECT = 2i32;
|
1446
|
-
pub const wlan_secure_add_new_all_user_profiles: WLAN_SECURABLE_OBJECT = 9i32;
|
1447
|
-
pub const wlan_secure_add_new_per_user_profiles: WLAN_SECURABLE_OBJECT = 10i32;
|
1448
|
-
pub const wlan_secure_all_user_profiles_order: WLAN_SECURABLE_OBJECT = 8i32;
|
1449
|
-
pub const wlan_secure_bc_scan_enabled: WLAN_SECURABLE_OBJECT = 3i32;
|
1450
|
-
pub const wlan_secure_bss_type: WLAN_SECURABLE_OBJECT = 4i32;
|
1451
|
-
pub const wlan_secure_current_operation_mode: WLAN_SECURABLE_OBJECT = 12i32;
|
1452
|
-
pub const wlan_secure_deny_list: WLAN_SECURABLE_OBJECT = 1i32;
|
1453
|
-
pub const wlan_secure_get_plaintext_key: WLAN_SECURABLE_OBJECT = 13i32;
|
1454
|
-
pub const wlan_secure_hosted_network_elevated_access: WLAN_SECURABLE_OBJECT = 14i32;
|
1455
|
-
pub const wlan_secure_ihv_control: WLAN_SECURABLE_OBJECT = 7i32;
|
1456
|
-
pub const wlan_secure_interface_properties: WLAN_SECURABLE_OBJECT = 6i32;
|
1457
|
-
pub const wlan_secure_media_streaming_mode_enabled: WLAN_SECURABLE_OBJECT = 11i32;
|
1458
|
-
pub const wlan_secure_permit_list: WLAN_SECURABLE_OBJECT = 0i32;
|
1459
|
-
pub const wlan_secure_show_denied: WLAN_SECURABLE_OBJECT = 5i32;
|
1460
|
-
pub const wlan_secure_virtual_station_extensibility: WLAN_SECURABLE_OBJECT = 15i32;
|
1461
|
-
pub const wlan_secure_wfd_elevated_access: WLAN_SECURABLE_OBJECT = 16i32;
|
1462
|
-
pub type CH_DESCRIPTION_TYPE = i32;
|
1463
|
-
pub type DEVPROP_PCIDEVICE_ACSCOMPATIBLEUPHIERARCHY = u32;
|
1464
|
-
pub type DEVPROP_PCIDEVICE_ACSSUPPORT = u32;
|
1465
|
-
pub type DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE = u32;
|
1466
|
-
pub type DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE = u32;
|
1467
|
-
pub type DEVPROP_PCIDEVICE_INTERRUPTTYPE = u32;
|
1468
|
-
pub type DEVPROP_PCIDEVICE_SRIOVSUPPORT = u32;
|
1469
|
-
pub type DEVPROP_PCIEXPRESSDEVICE_LINKSPEED = u32;
|
1470
|
-
pub type DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH = u32;
|
1471
|
-
pub type DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE = u32;
|
1472
|
-
pub type DEVPROP_PCIEXPRESSDEVICE_SPEC_VERSION = u32;
|
1473
|
-
pub type DEVPROP_PCIROOTBUS_BUSWIDTH = u32;
|
1474
|
-
pub type DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE = u32;
|
1475
|
-
pub type DEVPROP_PCIROOTBUS_SECONDARYINTERFACE = u32;
|
1476
|
-
pub type DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES = u32;
|
1477
|
-
pub type DOT11EXT_IHV_CONNECTION_PHASE = i32;
|
1478
|
-
pub type DOT11EXT_IHV_INDICATION_TYPE = i32;
|
1479
|
-
pub type DOT11_AC_PARAM = i32;
|
1480
|
-
pub type DOT11_ADHOC_AUTH_ALGORITHM = i32;
|
1481
|
-
pub type DOT11_ADHOC_CIPHER_ALGORITHM = i32;
|
1482
|
-
pub type DOT11_ADHOC_CONNECT_FAIL_REASON = i32;
|
1483
|
-
pub type DOT11_ADHOC_NETWORK_CONNECTION_STATUS = i32;
|
1484
|
-
pub type DOT11_ANQP_QUERY_RESULT = i32;
|
1485
|
-
pub type DOT11_ASSOCIATION_STATE = i32;
|
1486
|
-
pub type DOT11_AUTH_ALGORITHM = i32;
|
1487
|
-
pub type DOT11_BAND = i32;
|
1488
|
-
pub type DOT11_BSS_TYPE = i32;
|
1489
|
-
pub type DOT11_CIPHER_ALGORITHM = i32;
|
1490
|
-
pub type DOT11_DIRECTION = i32;
|
1491
|
-
pub type DOT11_DIVERSITY_SUPPORT = i32;
|
1492
|
-
pub type DOT11_DS_INFO = i32;
|
1493
|
-
pub type DOT11_HOP_ALGO_ADOPTED = i32;
|
1494
|
-
pub type DOT11_KEY_DIRECTION = i32;
|
1495
|
-
pub type DOT11_MANUFACTURING_CALLBACK_TYPE = i32;
|
1496
|
-
pub type DOT11_MANUFACTURING_SELF_TEST_TYPE = i32;
|
1497
|
-
pub type DOT11_MANUFACTURING_TEST_TYPE = i32;
|
1498
|
-
pub type DOT11_MSONEX_RESULT = i32;
|
1499
|
-
pub type DOT11_OFFLOAD_TYPE = i32;
|
1500
|
-
pub type DOT11_PHY_TYPE = i32;
|
1501
|
-
pub type DOT11_POWER_MODE = i32;
|
1502
|
-
pub type DOT11_POWER_MODE_REASON = i32;
|
1503
|
-
pub type DOT11_RADIO_STATE = i32;
|
1504
|
-
pub type DOT11_RESET_TYPE = i32;
|
1505
|
-
pub type DOT11_SCAN_TYPE = i32;
|
1506
|
-
pub type DOT11_TEMP_TYPE = i32;
|
1507
|
-
pub type DOT11_UPDATE_IE_OP = i32;
|
1508
|
-
pub type DOT11_WFD_DISCOVER_TYPE = i32;
|
1509
|
-
pub type DOT11_WFD_SCAN_TYPE = i32;
|
1510
|
-
pub type DOT11_WPS_CONFIG_METHOD = i32;
|
1511
|
-
pub type DOT11_WPS_DEVICE_PASSWORD_ID = i32;
|
1512
|
-
pub type ONEX_AUTH_IDENTITY = i32;
|
1513
|
-
pub type ONEX_AUTH_RESTART_REASON = i32;
|
1514
|
-
pub type ONEX_AUTH_STATUS = i32;
|
1515
|
-
pub type ONEX_EAP_METHOD_BACKEND_SUPPORT = i32;
|
1516
|
-
pub type ONEX_NOTIFICATION_TYPE = i32;
|
1517
|
-
pub type ONEX_REASON_CODE = i32;
|
1518
|
-
pub type WFD_ROLE_TYPE = i32;
|
1519
|
-
pub type WLAN_ADHOC_NETWORK_STATE = i32;
|
1520
|
-
pub type WLAN_AUTOCONF_OPCODE = i32;
|
1521
|
-
pub type WLAN_CONNECTION_MODE = i32;
|
1522
|
-
pub type WLAN_CONNECTION_NOTIFICATION_FLAGS = u32;
|
1523
|
-
pub type WLAN_FILTER_LIST_TYPE = i32;
|
1524
|
-
pub type WLAN_HOSTED_NETWORK_NOTIFICATION_CODE = i32;
|
1525
|
-
pub type WLAN_HOSTED_NETWORK_OPCODE = i32;
|
1526
|
-
pub type WLAN_HOSTED_NETWORK_PEER_AUTH_STATE = i32;
|
1527
|
-
pub type WLAN_HOSTED_NETWORK_REASON = i32;
|
1528
|
-
pub type WLAN_HOSTED_NETWORK_STATE = i32;
|
1529
|
-
pub type WLAN_IHV_CONTROL_TYPE = i32;
|
1530
|
-
pub type WLAN_INTERFACE_STATE = i32;
|
1531
|
-
pub type WLAN_INTERFACE_TYPE = i32;
|
1532
|
-
pub type WLAN_INTF_OPCODE = i32;
|
1533
|
-
pub type WLAN_NOTIFICATION_ACM = i32;
|
1534
|
-
pub type WLAN_NOTIFICATION_MSM = i32;
|
1535
|
-
pub type WLAN_NOTIFICATION_SECURITY = i32;
|
1536
|
-
pub type WLAN_NOTIFICATION_SOURCES = u32;
|
1537
|
-
pub type WLAN_OPCODE_VALUE_TYPE = i32;
|
1538
|
-
pub type WLAN_OPERATIONAL_STATE = i32;
|
1539
|
-
pub type WLAN_POWER_SETTING = i32;
|
1540
|
-
pub type WLAN_SECURABLE_OBJECT = i32;
|
1541
|
-
pub type WLAN_SET_EAPHOST_FLAGS = u32;
|
1542
|
-
pub type WL_DISPLAY_PAGES = i32;
|
1543
|
-
#[repr(C)]
|
1544
|
-
#[cfg(all(feature = "Win32_NetworkManagement_Ndis", feature = "Win32_Security_ExtensibleAuthenticationProtocol"))]
|
1545
|
-
#[derive(Clone, Copy)]
|
1546
|
-
pub struct DOT11EXT_APIS {
|
1547
|
-
pub Dot11ExtAllocateBuffer: DOT11EXT_ALLOCATE_BUFFER,
|
1548
|
-
pub Dot11ExtFreeBuffer: DOT11EXT_FREE_BUFFER,
|
1549
|
-
pub Dot11ExtSetProfileCustomUserData: DOT11EXT_SET_PROFILE_CUSTOM_USER_DATA,
|
1550
|
-
pub Dot11ExtGetProfileCustomUserData: DOT11EXT_GET_PROFILE_CUSTOM_USER_DATA,
|
1551
|
-
pub Dot11ExtSetCurrentProfile: DOT11EXT_SET_CURRENT_PROFILE,
|
1552
|
-
pub Dot11ExtSendUIRequest: DOT11EXT_SEND_UI_REQUEST,
|
1553
|
-
pub Dot11ExtPreAssociateCompletion: DOT11EXT_PRE_ASSOCIATE_COMPLETION,
|
1554
|
-
pub Dot11ExtPostAssociateCompletion: DOT11EXT_POST_ASSOCIATE_COMPLETION,
|
1555
|
-
pub Dot11ExtSendNotification: DOT11EXT_SEND_NOTIFICATION,
|
1556
|
-
pub Dot11ExtSendPacket: DOT11EXT_SEND_PACKET,
|
1557
|
-
pub Dot11ExtSetEtherTypeHandling: DOT11EXT_SET_ETHERTYPE_HANDLING,
|
1558
|
-
pub Dot11ExtSetAuthAlgorithm: DOT11EXT_SET_AUTH_ALGORITHM,
|
1559
|
-
pub Dot11ExtSetUnicastCipherAlgorithm: DOT11EXT_SET_UNICAST_CIPHER_ALGORITHM,
|
1560
|
-
pub Dot11ExtSetMulticastCipherAlgorithm: DOT11EXT_SET_MULTICAST_CIPHER_ALGORITHM,
|
1561
|
-
pub Dot11ExtSetDefaultKey: DOT11EXT_SET_DEFAULT_KEY,
|
1562
|
-
pub Dot11ExtSetKeyMappingKey: DOT11EXT_SET_KEY_MAPPING_KEY,
|
1563
|
-
pub Dot11ExtSetDefaultKeyId: DOT11EXT_SET_DEFAULT_KEY_ID,
|
1564
|
-
pub Dot11ExtNicSpecificExtension: DOT11EXT_NIC_SPECIFIC_EXTENSION,
|
1565
|
-
pub Dot11ExtSetExcludeUnencrypted: DOT11EXT_SET_EXCLUDE_UNENCRYPTED,
|
1566
|
-
pub Dot11ExtStartOneX: DOT11EXT_ONEX_START,
|
1567
|
-
pub Dot11ExtStopOneX: DOT11EXT_ONEX_STOP,
|
1568
|
-
pub Dot11ExtProcessSecurityPacket: DOT11EXT_PROCESS_ONEX_PACKET,
|
1569
|
-
}
|
1570
|
-
#[repr(C)]
|
1571
|
-
#[derive(Clone, Copy)]
|
1572
|
-
pub struct DOT11EXT_IHV_CONNECTIVITY_PROFILE {
|
1573
|
-
pub pszXmlFragmentIhvConnectivity: windows_sys::core::PWSTR,
|
1574
|
-
}
|
1575
|
-
#[repr(C)]
|
1576
|
-
#[derive(Clone, Copy)]
|
1577
|
-
pub struct DOT11EXT_IHV_DISCOVERY_PROFILE {
|
1578
|
-
pub IhvConnectivityProfile: DOT11EXT_IHV_CONNECTIVITY_PROFILE,
|
1579
|
-
pub IhvSecurityProfile: DOT11EXT_IHV_SECURITY_PROFILE,
|
1580
|
-
}
|
1581
|
-
#[repr(C)]
|
1582
|
-
#[derive(Clone, Copy)]
|
1583
|
-
pub struct DOT11EXT_IHV_DISCOVERY_PROFILE_LIST {
|
1584
|
-
pub dwCount: u32,
|
1585
|
-
pub pIhvDiscoveryProfiles: *mut DOT11EXT_IHV_DISCOVERY_PROFILE,
|
1586
|
-
}
|
1587
|
-
#[repr(C)]
|
1588
|
-
#[cfg(all(feature = "Win32_NetworkManagement_Ndis", feature = "Win32_Security_ExtensibleAuthenticationProtocol", feature = "Win32_System_RemoteDesktop"))]
|
1589
|
-
#[derive(Clone, Copy)]
|
1590
|
-
pub struct DOT11EXT_IHV_HANDLERS {
|
1591
|
-
pub Dot11ExtIhvDeinitService: DOT11EXTIHV_DEINIT_SERVICE,
|
1592
|
-
pub Dot11ExtIhvInitAdapter: DOT11EXTIHV_INIT_ADAPTER,
|
1593
|
-
pub Dot11ExtIhvDeinitAdapter: DOT11EXTIHV_DEINIT_ADAPTER,
|
1594
|
-
pub Dot11ExtIhvPerformPreAssociate: DOT11EXTIHV_PERFORM_PRE_ASSOCIATE,
|
1595
|
-
pub Dot11ExtIhvAdapterReset: DOT11EXTIHV_ADAPTER_RESET,
|
1596
|
-
pub Dot11ExtIhvPerformPostAssociate: DOT11EXTIHV_PERFORM_POST_ASSOCIATE,
|
1597
|
-
pub Dot11ExtIhvStopPostAssociate: DOT11EXTIHV_STOP_POST_ASSOCIATE,
|
1598
|
-
pub Dot11ExtIhvValidateProfile: DOT11EXTIHV_VALIDATE_PROFILE,
|
1599
|
-
pub Dot11ExtIhvPerformCapabilityMatch: DOT11EXTIHV_PERFORM_CAPABILITY_MATCH,
|
1600
|
-
pub Dot11ExtIhvCreateDiscoveryProfiles: DOT11EXTIHV_CREATE_DISCOVERY_PROFILES,
|
1601
|
-
pub Dot11ExtIhvProcessSessionChange: DOT11EXTIHV_PROCESS_SESSION_CHANGE,
|
1602
|
-
pub Dot11ExtIhvReceiveIndication: DOT11EXTIHV_RECEIVE_INDICATION,
|
1603
|
-
pub Dot11ExtIhvReceivePacket: DOT11EXTIHV_RECEIVE_PACKET,
|
1604
|
-
pub Dot11ExtIhvSendPacketCompletion: DOT11EXTIHV_SEND_PACKET_COMPLETION,
|
1605
|
-
pub Dot11ExtIhvIsUIRequestPending: DOT11EXTIHV_IS_UI_REQUEST_PENDING,
|
1606
|
-
pub Dot11ExtIhvProcessUIResponse: DOT11EXTIHV_PROCESS_UI_RESPONSE,
|
1607
|
-
pub Dot11ExtIhvQueryUIRequest: DOT11EXTIHV_QUERY_UI_REQUEST,
|
1608
|
-
pub Dot11ExtIhvOnexIndicateResult: DOT11EXTIHV_ONEX_INDICATE_RESULT,
|
1609
|
-
pub Dot11ExtIhvControl: DOT11EXTIHV_CONTROL,
|
1610
|
-
}
|
1611
|
-
#[repr(C)]
|
1612
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
1613
|
-
#[derive(Clone, Copy)]
|
1614
|
-
pub struct DOT11EXT_IHV_PARAMS {
|
1615
|
-
pub dot11ExtIhvProfileParams: DOT11EXT_IHV_PROFILE_PARAMS,
|
1616
|
-
pub wstrProfileName: [u16; 256],
|
1617
|
-
pub dwProfileTypeFlags: u32,
|
1618
|
-
pub interfaceGuid: windows_sys::core::GUID,
|
1619
|
-
}
|
1620
|
-
#[repr(C)]
|
1621
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
1622
|
-
#[derive(Clone, Copy)]
|
1623
|
-
pub struct DOT11EXT_IHV_PROFILE_PARAMS {
|
1624
|
-
pub pSsidList: *mut DOT11EXT_IHV_SSID_LIST,
|
1625
|
-
pub BssType: DOT11_BSS_TYPE,
|
1626
|
-
pub pMSSecuritySettings: *mut DOT11_MSSECURITY_SETTINGS,
|
1627
|
-
}
|
1628
|
-
#[repr(C)]
|
1629
|
-
#[derive(Clone, Copy)]
|
1630
|
-
pub struct DOT11EXT_IHV_SECURITY_PROFILE {
|
1631
|
-
pub pszXmlFragmentIhvSecurity: windows_sys::core::PWSTR,
|
1632
|
-
pub bUseMSOnex: super::super::Foundation::BOOL,
|
1633
|
-
}
|
1634
|
-
#[repr(C)]
|
1635
|
-
#[derive(Clone, Copy)]
|
1636
|
-
pub struct DOT11EXT_IHV_SSID_LIST {
|
1637
|
-
pub ulCount: u32,
|
1638
|
-
pub SSIDs: [DOT11_SSID; 1],
|
1639
|
-
}
|
1640
|
-
#[repr(C)]
|
1641
|
-
#[derive(Clone, Copy)]
|
1642
|
-
pub struct DOT11EXT_IHV_UI_REQUEST {
|
1643
|
-
pub dwSessionId: u32,
|
1644
|
-
pub guidUIRequest: windows_sys::core::GUID,
|
1645
|
-
pub UIPageClsid: windows_sys::core::GUID,
|
1646
|
-
pub dwByteCount: u32,
|
1647
|
-
pub pvUIRequest: *mut u8,
|
1648
|
-
}
|
1649
|
-
#[repr(C)]
|
1650
|
-
#[derive(Clone, Copy)]
|
1651
|
-
pub struct DOT11EXT_VIRTUAL_STATION_APIS {
|
1652
|
-
pub Dot11ExtRequestVirtualStation: DOT11EXT_REQUEST_VIRTUAL_STATION,
|
1653
|
-
pub Dot11ExtReleaseVirtualStation: DOT11EXT_RELEASE_VIRTUAL_STATION,
|
1654
|
-
pub Dot11ExtQueryVirtualStationProperties: DOT11EXT_QUERY_VIRTUAL_STATION_PROPERTIES,
|
1655
|
-
pub Dot11ExtSetVirtualStationAPProperties: DOT11EXT_SET_VIRTUAL_STATION_AP_PROPERTIES,
|
1656
|
-
}
|
1657
|
-
#[repr(C)]
|
1658
|
-
#[derive(Clone, Copy)]
|
1659
|
-
pub struct DOT11EXT_VIRTUAL_STATION_AP_PROPERTY {
|
1660
|
-
pub dot11SSID: DOT11_SSID,
|
1661
|
-
pub dot11AuthAlgo: DOT11_AUTH_ALGORITHM,
|
1662
|
-
pub dot11CipherAlgo: DOT11_CIPHER_ALGORITHM,
|
1663
|
-
pub bIsPassPhrase: super::super::Foundation::BOOL,
|
1664
|
-
pub dwKeyLength: u32,
|
1665
|
-
pub ucKeyData: [u8; 64],
|
1666
|
-
}
|
1667
|
-
#[repr(C)]
|
1668
|
-
#[derive(Clone, Copy)]
|
1669
|
-
pub struct DOT11_ACCESSNETWORKOPTIONS {
|
1670
|
-
pub AccessNetworkType: u8,
|
1671
|
-
pub Internet: u8,
|
1672
|
-
pub ASRA: u8,
|
1673
|
-
pub ESR: u8,
|
1674
|
-
pub UESA: u8,
|
1675
|
-
}
|
1676
|
-
#[repr(C)]
|
1677
|
-
#[derive(Clone, Copy)]
|
1678
|
-
pub struct DOT11_ADAPTER {
|
1679
|
-
pub gAdapterId: windows_sys::core::GUID,
|
1680
|
-
pub pszDescription: windows_sys::core::PWSTR,
|
1681
|
-
pub Dot11CurrentOpMode: DOT11_CURRENT_OPERATION_MODE,
|
1682
|
-
}
|
1683
|
-
#[repr(C)]
|
1684
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1685
|
-
#[derive(Clone, Copy)]
|
1686
|
-
pub struct DOT11_ADDITIONAL_IE {
|
1687
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1688
|
-
pub uBeaconIEsOffset: u32,
|
1689
|
-
pub uBeaconIEsLength: u32,
|
1690
|
-
pub uResponseIEsOffset: u32,
|
1691
|
-
pub uResponseIEsLength: u32,
|
1692
|
-
}
|
1693
|
-
#[repr(C)]
|
1694
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1695
|
-
#[derive(Clone, Copy)]
|
1696
|
-
pub struct DOT11_ANQP_QUERY_COMPLETE_PARAMETERS {
|
1697
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1698
|
-
pub Status: DOT11_ANQP_QUERY_RESULT,
|
1699
|
-
pub hContext: super::super::Foundation::HANDLE,
|
1700
|
-
pub uResponseLength: u32,
|
1701
|
-
}
|
1702
|
-
#[repr(C)]
|
1703
|
-
#[derive(Clone, Copy)]
|
1704
|
-
pub struct DOT11_AP_JOIN_REQUEST {
|
1705
|
-
pub uJoinFailureTimeout: u32,
|
1706
|
-
pub OperationalRateSet: DOT11_RATE_SET,
|
1707
|
-
pub uChCenterFrequency: u32,
|
1708
|
-
pub dot11BSSDescription: DOT11_BSS_DESCRIPTION,
|
1709
|
-
}
|
1710
|
-
#[repr(C)]
|
1711
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1712
|
-
#[derive(Clone, Copy)]
|
1713
|
-
pub struct DOT11_ASSOCIATION_COMPLETION_PARAMETERS {
|
1714
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1715
|
-
pub MacAddr: [u8; 6],
|
1716
|
-
pub uStatus: u32,
|
1717
|
-
pub bReAssocReq: super::super::Foundation::BOOLEAN,
|
1718
|
-
pub bReAssocResp: super::super::Foundation::BOOLEAN,
|
1719
|
-
pub uAssocReqOffset: u32,
|
1720
|
-
pub uAssocReqSize: u32,
|
1721
|
-
pub uAssocRespOffset: u32,
|
1722
|
-
pub uAssocRespSize: u32,
|
1723
|
-
pub uBeaconOffset: u32,
|
1724
|
-
pub uBeaconSize: u32,
|
1725
|
-
pub uIHVDataOffset: u32,
|
1726
|
-
pub uIHVDataSize: u32,
|
1727
|
-
pub AuthAlgo: DOT11_AUTH_ALGORITHM,
|
1728
|
-
pub UnicastCipher: DOT11_CIPHER_ALGORITHM,
|
1729
|
-
pub MulticastCipher: DOT11_CIPHER_ALGORITHM,
|
1730
|
-
pub uActivePhyListOffset: u32,
|
1731
|
-
pub uActivePhyListSize: u32,
|
1732
|
-
pub bFourAddressSupported: super::super::Foundation::BOOLEAN,
|
1733
|
-
pub bPortAuthorized: super::super::Foundation::BOOLEAN,
|
1734
|
-
pub ucActiveQoSProtocol: u8,
|
1735
|
-
pub DSInfo: DOT11_DS_INFO,
|
1736
|
-
pub uEncapTableOffset: u32,
|
1737
|
-
pub uEncapTableSize: u32,
|
1738
|
-
pub MulticastMgmtCipher: DOT11_CIPHER_ALGORITHM,
|
1739
|
-
pub uAssocComebackTime: u32,
|
1740
|
-
}
|
1741
|
-
#[repr(C)]
|
1742
|
-
#[derive(Clone, Copy)]
|
1743
|
-
pub struct DOT11_ASSOCIATION_INFO_EX {
|
1744
|
-
pub PeerMacAddress: [u8; 6],
|
1745
|
-
pub BSSID: [u8; 6],
|
1746
|
-
pub usCapabilityInformation: u16,
|
1747
|
-
pub usListenInterval: u16,
|
1748
|
-
pub ucPeerSupportedRates: [u8; 255],
|
1749
|
-
pub usAssociationID: u16,
|
1750
|
-
pub dot11AssociationState: DOT11_ASSOCIATION_STATE,
|
1751
|
-
pub dot11PowerMode: DOT11_POWER_MODE,
|
1752
|
-
pub liAssociationUpTime: i64,
|
1753
|
-
pub ullNumOfTxPacketSuccesses: u64,
|
1754
|
-
pub ullNumOfTxPacketFailures: u64,
|
1755
|
-
pub ullNumOfRxPacketSuccesses: u64,
|
1756
|
-
pub ullNumOfRxPacketFailures: u64,
|
1757
|
-
}
|
1758
|
-
#[repr(C)]
|
1759
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1760
|
-
#[derive(Clone, Copy)]
|
1761
|
-
pub struct DOT11_ASSOCIATION_INFO_LIST {
|
1762
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1763
|
-
pub uNumOfEntries: u32,
|
1764
|
-
pub uTotalNumOfEntries: u32,
|
1765
|
-
pub dot11AssocInfo: [DOT11_ASSOCIATION_INFO_EX; 1],
|
1766
|
-
}
|
1767
|
-
#[repr(C)]
|
1768
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1769
|
-
#[derive(Clone, Copy)]
|
1770
|
-
pub struct DOT11_ASSOCIATION_PARAMS {
|
1771
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1772
|
-
pub BSSID: [u8; 6],
|
1773
|
-
pub uAssocRequestIEsOffset: u32,
|
1774
|
-
pub uAssocRequestIEsLength: u32,
|
1775
|
-
}
|
1776
|
-
#[repr(C)]
|
1777
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1778
|
-
#[derive(Clone, Copy)]
|
1779
|
-
pub struct DOT11_ASSOCIATION_START_PARAMETERS {
|
1780
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1781
|
-
pub MacAddr: [u8; 6],
|
1782
|
-
pub SSID: DOT11_SSID,
|
1783
|
-
pub uIHVDataOffset: u32,
|
1784
|
-
pub uIHVDataSize: u32,
|
1785
|
-
}
|
1786
|
-
#[repr(C)]
|
1787
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1788
|
-
#[derive(Clone, Copy)]
|
1789
|
-
pub struct DOT11_AUTH_ALGORITHM_LIST {
|
1790
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1791
|
-
pub uNumOfEntries: u32,
|
1792
|
-
pub uTotalNumOfEntries: u32,
|
1793
|
-
pub AlgorithmIds: [DOT11_AUTH_ALGORITHM; 1],
|
1794
|
-
}
|
1795
|
-
#[repr(C)]
|
1796
|
-
#[derive(Clone, Copy)]
|
1797
|
-
pub struct DOT11_AUTH_CIPHER_PAIR {
|
1798
|
-
pub AuthAlgoId: DOT11_AUTH_ALGORITHM,
|
1799
|
-
pub CipherAlgoId: DOT11_CIPHER_ALGORITHM,
|
1800
|
-
}
|
1801
|
-
#[repr(C)]
|
1802
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1803
|
-
#[derive(Clone, Copy)]
|
1804
|
-
pub struct DOT11_AUTH_CIPHER_PAIR_LIST {
|
1805
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1806
|
-
pub uNumOfEntries: u32,
|
1807
|
-
pub uTotalNumOfEntries: u32,
|
1808
|
-
pub AuthCipherPairs: [DOT11_AUTH_CIPHER_PAIR; 1],
|
1809
|
-
}
|
1810
|
-
#[repr(C)]
|
1811
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1812
|
-
#[derive(Clone, Copy)]
|
1813
|
-
pub struct DOT11_AVAILABLE_CHANNEL_LIST {
|
1814
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1815
|
-
pub uNumOfEntries: u32,
|
1816
|
-
pub uTotalNumOfEntries: u32,
|
1817
|
-
pub uChannelNumber: [u32; 1],
|
1818
|
-
}
|
1819
|
-
#[repr(C)]
|
1820
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1821
|
-
#[derive(Clone, Copy)]
|
1822
|
-
pub struct DOT11_AVAILABLE_FREQUENCY_LIST {
|
1823
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1824
|
-
pub uNumOfEntries: u32,
|
1825
|
-
pub uTotalNumOfEntries: u32,
|
1826
|
-
pub uFrequencyValue: [u32; 1],
|
1827
|
-
}
|
1828
|
-
#[repr(C)]
|
1829
|
-
#[derive(Clone, Copy)]
|
1830
|
-
pub struct DOT11_BSSID_CANDIDATE {
|
1831
|
-
pub BSSID: [u8; 6],
|
1832
|
-
pub uFlags: u32,
|
1833
|
-
}
|
1834
|
-
#[repr(C)]
|
1835
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1836
|
-
#[derive(Clone, Copy)]
|
1837
|
-
pub struct DOT11_BSSID_LIST {
|
1838
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1839
|
-
pub uNumOfEntries: u32,
|
1840
|
-
pub uTotalNumOfEntries: u32,
|
1841
|
-
pub BSSIDs: [u8; 6],
|
1842
|
-
}
|
1843
|
-
#[repr(C)]
|
1844
|
-
#[derive(Clone, Copy)]
|
1845
|
-
pub struct DOT11_BSS_DESCRIPTION {
|
1846
|
-
pub uReserved: u32,
|
1847
|
-
pub dot11BSSID: [u8; 6],
|
1848
|
-
pub dot11BSSType: DOT11_BSS_TYPE,
|
1849
|
-
pub usBeaconPeriod: u16,
|
1850
|
-
pub ullTimestamp: u64,
|
1851
|
-
pub usCapabilityInformation: u16,
|
1852
|
-
pub uBufferLength: u32,
|
1853
|
-
pub ucBuffer: [u8; 1],
|
1854
|
-
}
|
1855
|
-
#[repr(C)]
|
1856
|
-
#[derive(Clone, Copy)]
|
1857
|
-
pub struct DOT11_BSS_ENTRY {
|
1858
|
-
pub uPhyId: u32,
|
1859
|
-
pub PhySpecificInfo: DOT11_BSS_ENTRY_PHY_SPECIFIC_INFO,
|
1860
|
-
pub dot11BSSID: [u8; 6],
|
1861
|
-
pub dot11BSSType: DOT11_BSS_TYPE,
|
1862
|
-
pub lRSSI: i32,
|
1863
|
-
pub uLinkQuality: u32,
|
1864
|
-
pub bInRegDomain: super::super::Foundation::BOOLEAN,
|
1865
|
-
pub usBeaconPeriod: u16,
|
1866
|
-
pub ullTimestamp: u64,
|
1867
|
-
pub ullHostTimestamp: u64,
|
1868
|
-
pub usCapabilityInformation: u16,
|
1869
|
-
pub uBufferLength: u32,
|
1870
|
-
pub ucBuffer: [u8; 1],
|
1871
|
-
}
|
1872
|
-
#[repr(C)]
|
1873
|
-
#[derive(Clone, Copy)]
|
1874
|
-
pub union DOT11_BSS_ENTRY_PHY_SPECIFIC_INFO {
|
1875
|
-
pub uChCenterFrequency: u32,
|
1876
|
-
pub FHSS: DOT11_BSS_ENTRY_PHY_SPECIFIC_INFO_0,
|
1877
|
-
}
|
1878
|
-
#[repr(C)]
|
1879
|
-
#[derive(Clone, Copy)]
|
1880
|
-
pub struct DOT11_BSS_ENTRY_PHY_SPECIFIC_INFO_0 {
|
1881
|
-
pub uHopPattern: u32,
|
1882
|
-
pub uHopSet: u32,
|
1883
|
-
pub uDwellTime: u32,
|
1884
|
-
}
|
1885
|
-
#[repr(C)]
|
1886
|
-
#[derive(Clone, Copy)]
|
1887
|
-
pub struct DOT11_BSS_LIST {
|
1888
|
-
pub uNumOfBytes: u32,
|
1889
|
-
pub pucBuffer: *mut u8,
|
1890
|
-
}
|
1891
|
-
#[repr(C)]
|
1892
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1893
|
-
#[derive(Clone, Copy)]
|
1894
|
-
pub struct DOT11_BYTE_ARRAY {
|
1895
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1896
|
-
pub uNumOfBytes: u32,
|
1897
|
-
pub uTotalNumOfBytes: u32,
|
1898
|
-
pub ucBuffer: [u8; 1],
|
1899
|
-
}
|
1900
|
-
#[repr(C)]
|
1901
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1902
|
-
#[derive(Clone, Copy)]
|
1903
|
-
pub struct DOT11_CAN_SUSTAIN_AP_PARAMETERS {
|
1904
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1905
|
-
pub ulReason: u32,
|
1906
|
-
}
|
1907
|
-
#[repr(C)]
|
1908
|
-
#[derive(Clone, Copy)]
|
1909
|
-
pub struct DOT11_CHANNEL_HINT {
|
1910
|
-
pub Dot11PhyType: DOT11_PHY_TYPE,
|
1911
|
-
pub uChannelNumber: u32,
|
1912
|
-
}
|
1913
|
-
#[repr(C)]
|
1914
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1915
|
-
#[derive(Clone, Copy)]
|
1916
|
-
pub struct DOT11_CIPHER_ALGORITHM_LIST {
|
1917
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1918
|
-
pub uNumOfEntries: u32,
|
1919
|
-
pub uTotalNumOfEntries: u32,
|
1920
|
-
pub AlgorithmIds: [DOT11_CIPHER_ALGORITHM; 1],
|
1921
|
-
}
|
1922
|
-
#[repr(C)]
|
1923
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1924
|
-
#[derive(Clone, Copy)]
|
1925
|
-
pub struct DOT11_CIPHER_DEFAULT_KEY_VALUE {
|
1926
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1927
|
-
pub uKeyIndex: u32,
|
1928
|
-
pub AlgorithmId: DOT11_CIPHER_ALGORITHM,
|
1929
|
-
pub MacAddr: [u8; 6],
|
1930
|
-
pub bDelete: super::super::Foundation::BOOLEAN,
|
1931
|
-
pub bStatic: super::super::Foundation::BOOLEAN,
|
1932
|
-
pub usKeyLength: u16,
|
1933
|
-
pub ucKey: [u8; 1],
|
1934
|
-
}
|
1935
|
-
#[repr(C)]
|
1936
|
-
#[derive(Clone, Copy)]
|
1937
|
-
pub struct DOT11_CIPHER_KEY_MAPPING_KEY_VALUE {
|
1938
|
-
pub PeerMacAddr: [u8; 6],
|
1939
|
-
pub AlgorithmId: DOT11_CIPHER_ALGORITHM,
|
1940
|
-
pub Direction: DOT11_DIRECTION,
|
1941
|
-
pub bDelete: super::super::Foundation::BOOLEAN,
|
1942
|
-
pub bStatic: super::super::Foundation::BOOLEAN,
|
1943
|
-
pub usKeyLength: u16,
|
1944
|
-
pub ucKey: [u8; 1],
|
1945
|
-
}
|
1946
|
-
#[repr(C)]
|
1947
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1948
|
-
#[derive(Clone, Copy)]
|
1949
|
-
pub struct DOT11_CONNECTION_COMPLETION_PARAMETERS {
|
1950
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1951
|
-
pub uStatus: u32,
|
1952
|
-
}
|
1953
|
-
#[repr(C)]
|
1954
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1955
|
-
#[derive(Clone, Copy)]
|
1956
|
-
pub struct DOT11_CONNECTION_START_PARAMETERS {
|
1957
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1958
|
-
pub BSSType: DOT11_BSS_TYPE,
|
1959
|
-
pub AdhocBSSID: [u8; 6],
|
1960
|
-
pub AdhocSSID: DOT11_SSID,
|
1961
|
-
}
|
1962
|
-
#[repr(C)]
|
1963
|
-
#[derive(Clone, Copy)]
|
1964
|
-
pub struct DOT11_COUNTERS_ENTRY {
|
1965
|
-
pub uTransmittedFragmentCount: u32,
|
1966
|
-
pub uMulticastTransmittedFrameCount: u32,
|
1967
|
-
pub uFailedCount: u32,
|
1968
|
-
pub uRetryCount: u32,
|
1969
|
-
pub uMultipleRetryCount: u32,
|
1970
|
-
pub uFrameDuplicateCount: u32,
|
1971
|
-
pub uRTSSuccessCount: u32,
|
1972
|
-
pub uRTSFailureCount: u32,
|
1973
|
-
pub uACKFailureCount: u32,
|
1974
|
-
pub uReceivedFragmentCount: u32,
|
1975
|
-
pub uMulticastReceivedFrameCount: u32,
|
1976
|
-
pub uFCSErrorCount: u32,
|
1977
|
-
pub uTransmittedFrameCount: u32,
|
1978
|
-
}
|
1979
|
-
#[repr(C)]
|
1980
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
1981
|
-
#[derive(Clone, Copy)]
|
1982
|
-
pub struct DOT11_COUNTRY_OR_REGION_STRING_LIST {
|
1983
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
1984
|
-
pub uNumOfEntries: u32,
|
1985
|
-
pub uTotalNumOfEntries: u32,
|
1986
|
-
pub CountryOrRegionStrings: [u8; 3],
|
1987
|
-
}
|
1988
|
-
#[repr(C)]
|
1989
|
-
#[derive(Clone, Copy)]
|
1990
|
-
pub struct DOT11_CURRENT_OFFLOAD_CAPABILITY {
|
1991
|
-
pub uReserved: u32,
|
1992
|
-
pub uFlags: u32,
|
1993
|
-
}
|
1994
|
-
#[repr(C)]
|
1995
|
-
#[derive(Clone, Copy)]
|
1996
|
-
pub struct DOT11_CURRENT_OPERATION_MODE {
|
1997
|
-
pub uReserved: u32,
|
1998
|
-
pub uCurrentOpMode: u32,
|
1999
|
-
}
|
2000
|
-
#[repr(C)]
|
2001
|
-
#[derive(Clone, Copy)]
|
2002
|
-
pub struct DOT11_CURRENT_OPTIONAL_CAPABILITY {
|
2003
|
-
pub uReserved: u32,
|
2004
|
-
pub bDot11CFPollable: super::super::Foundation::BOOLEAN,
|
2005
|
-
pub bDot11PCF: super::super::Foundation::BOOLEAN,
|
2006
|
-
pub bDot11PCFMPDUTransferToPC: super::super::Foundation::BOOLEAN,
|
2007
|
-
pub bStrictlyOrderedServiceClass: super::super::Foundation::BOOLEAN,
|
2008
|
-
}
|
2009
|
-
#[repr(C)]
|
2010
|
-
#[derive(Clone, Copy)]
|
2011
|
-
pub struct DOT11_DATA_RATE_MAPPING_ENTRY {
|
2012
|
-
pub ucDataRateIndex: u8,
|
2013
|
-
pub ucDataRateFlag: u8,
|
2014
|
-
pub usDataRateValue: u16,
|
2015
|
-
}
|
2016
|
-
#[repr(C)]
|
2017
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2018
|
-
#[derive(Clone, Copy)]
|
2019
|
-
pub struct DOT11_DATA_RATE_MAPPING_TABLE {
|
2020
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2021
|
-
pub uDataRateMappingLength: u32,
|
2022
|
-
pub DataRateMappingEntries: [DOT11_DATA_RATE_MAPPING_ENTRY; 126],
|
2023
|
-
}
|
2024
|
-
#[repr(C)]
|
2025
|
-
#[derive(Clone, Copy)]
|
2026
|
-
pub struct DOT11_DEFAULT_WEP_OFFLOAD {
|
2027
|
-
pub uReserved: u32,
|
2028
|
-
pub hOffloadContext: super::super::Foundation::HANDLE,
|
2029
|
-
pub hOffload: super::super::Foundation::HANDLE,
|
2030
|
-
pub dwIndex: u32,
|
2031
|
-
pub dot11OffloadType: DOT11_OFFLOAD_TYPE,
|
2032
|
-
pub dwAlgorithm: u32,
|
2033
|
-
pub uFlags: u32,
|
2034
|
-
pub dot11KeyDirection: DOT11_KEY_DIRECTION,
|
2035
|
-
pub ucMacAddress: [u8; 6],
|
2036
|
-
pub uNumOfRWsOnMe: u32,
|
2037
|
-
pub dot11IV48Counters: [DOT11_IV48_COUNTER; 16],
|
2038
|
-
pub usDot11RWBitMaps: [u16; 16],
|
2039
|
-
pub usKeyLength: u16,
|
2040
|
-
pub ucKey: [u8; 1],
|
2041
|
-
}
|
2042
|
-
#[repr(C)]
|
2043
|
-
#[derive(Clone, Copy)]
|
2044
|
-
pub struct DOT11_DEFAULT_WEP_UPLOAD {
|
2045
|
-
pub uReserved: u32,
|
2046
|
-
pub dot11OffloadType: DOT11_OFFLOAD_TYPE,
|
2047
|
-
pub hOffload: super::super::Foundation::HANDLE,
|
2048
|
-
pub uNumOfRWsUsed: u32,
|
2049
|
-
pub dot11IV48Counters: [DOT11_IV48_COUNTER; 16],
|
2050
|
-
pub usDot11RWBitMaps: [u16; 16],
|
2051
|
-
}
|
2052
|
-
#[repr(C)]
|
2053
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2054
|
-
#[derive(Clone, Copy)]
|
2055
|
-
pub struct DOT11_DISASSOCIATE_PEER_REQUEST {
|
2056
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2057
|
-
pub PeerMacAddr: [u8; 6],
|
2058
|
-
pub usReason: u16,
|
2059
|
-
}
|
2060
|
-
#[repr(C)]
|
2061
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2062
|
-
#[derive(Clone, Copy)]
|
2063
|
-
pub struct DOT11_DISASSOCIATION_PARAMETERS {
|
2064
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2065
|
-
pub MacAddr: [u8; 6],
|
2066
|
-
pub uReason: u32,
|
2067
|
-
pub uIHVDataOffset: u32,
|
2068
|
-
pub uIHVDataSize: u32,
|
2069
|
-
}
|
2070
|
-
#[repr(C)]
|
2071
|
-
#[derive(Clone, Copy)]
|
2072
|
-
pub struct DOT11_DIVERSITY_SELECTION_RX {
|
2073
|
-
pub uAntennaListIndex: u32,
|
2074
|
-
pub bDiversitySelectionRX: super::super::Foundation::BOOLEAN,
|
2075
|
-
}
|
2076
|
-
#[repr(C)]
|
2077
|
-
#[derive(Clone, Copy)]
|
2078
|
-
pub struct DOT11_DIVERSITY_SELECTION_RX_LIST {
|
2079
|
-
pub uNumOfEntries: u32,
|
2080
|
-
pub uTotalNumOfEntries: u32,
|
2081
|
-
pub dot11DiversitySelectionRx: [DOT11_DIVERSITY_SELECTION_RX; 1],
|
2082
|
-
}
|
2083
|
-
#[repr(C)]
|
2084
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
2085
|
-
#[derive(Clone, Copy)]
|
2086
|
-
pub struct DOT11_EAP_RESULT {
|
2087
|
-
pub dwFailureReasonCode: u32,
|
2088
|
-
pub pAttribArray: *mut super::super::Security::ExtensibleAuthenticationProtocol::EAP_ATTRIBUTES,
|
2089
|
-
}
|
2090
|
-
#[repr(C)]
|
2091
|
-
#[derive(Clone, Copy)]
|
2092
|
-
pub struct DOT11_ENCAP_ENTRY {
|
2093
|
-
pub usEtherType: u16,
|
2094
|
-
pub usEncapType: u16,
|
2095
|
-
}
|
2096
|
-
#[repr(C)]
|
2097
|
-
#[derive(Clone, Copy)]
|
2098
|
-
pub struct DOT11_ERP_PHY_ATTRIBUTES {
|
2099
|
-
pub HRDSSSAttributes: DOT11_HRDSSS_PHY_ATTRIBUTES,
|
2100
|
-
pub bERPPBCCOptionImplemented: super::super::Foundation::BOOLEAN,
|
2101
|
-
pub bDSSSOFDMOptionImplemented: super::super::Foundation::BOOLEAN,
|
2102
|
-
pub bShortSlotTimeOptionImplemented: super::super::Foundation::BOOLEAN,
|
2103
|
-
}
|
2104
|
-
#[repr(C)]
|
2105
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2106
|
-
#[derive(Clone, Copy)]
|
2107
|
-
pub struct DOT11_EXTAP_ATTRIBUTES {
|
2108
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2109
|
-
pub uScanSSIDListSize: u32,
|
2110
|
-
pub uDesiredSSIDListSize: u32,
|
2111
|
-
pub uPrivacyExemptionListSize: u32,
|
2112
|
-
pub uAssociationTableSize: u32,
|
2113
|
-
pub uDefaultKeyTableSize: u32,
|
2114
|
-
pub uWEPKeyValueMaxLength: u32,
|
2115
|
-
pub bStrictlyOrderedServiceClassImplemented: super::super::Foundation::BOOLEAN,
|
2116
|
-
pub uNumSupportedCountryOrRegionStrings: u32,
|
2117
|
-
pub pSupportedCountryOrRegionStrings: *mut u8,
|
2118
|
-
pub uInfraNumSupportedUcastAlgoPairs: u32,
|
2119
|
-
pub pInfraSupportedUcastAlgoPairs: *mut DOT11_AUTH_CIPHER_PAIR,
|
2120
|
-
pub uInfraNumSupportedMcastAlgoPairs: u32,
|
2121
|
-
pub pInfraSupportedMcastAlgoPairs: *mut DOT11_AUTH_CIPHER_PAIR,
|
2122
|
-
}
|
2123
|
-
#[repr(C)]
|
2124
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2125
|
-
#[derive(Clone, Copy)]
|
2126
|
-
pub struct DOT11_EXTSTA_ATTRIBUTES {
|
2127
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2128
|
-
pub uScanSSIDListSize: u32,
|
2129
|
-
pub uDesiredBSSIDListSize: u32,
|
2130
|
-
pub uDesiredSSIDListSize: u32,
|
2131
|
-
pub uExcludedMacAddressListSize: u32,
|
2132
|
-
pub uPrivacyExemptionListSize: u32,
|
2133
|
-
pub uKeyMappingTableSize: u32,
|
2134
|
-
pub uDefaultKeyTableSize: u32,
|
2135
|
-
pub uWEPKeyValueMaxLength: u32,
|
2136
|
-
pub uPMKIDCacheSize: u32,
|
2137
|
-
pub uMaxNumPerSTADefaultKeyTables: u32,
|
2138
|
-
pub bStrictlyOrderedServiceClassImplemented: super::super::Foundation::BOOLEAN,
|
2139
|
-
pub ucSupportedQoSProtocolFlags: u8,
|
2140
|
-
pub bSafeModeImplemented: super::super::Foundation::BOOLEAN,
|
2141
|
-
pub uNumSupportedCountryOrRegionStrings: u32,
|
2142
|
-
pub pSupportedCountryOrRegionStrings: *mut u8,
|
2143
|
-
pub uInfraNumSupportedUcastAlgoPairs: u32,
|
2144
|
-
pub pInfraSupportedUcastAlgoPairs: *mut DOT11_AUTH_CIPHER_PAIR,
|
2145
|
-
pub uInfraNumSupportedMcastAlgoPairs: u32,
|
2146
|
-
pub pInfraSupportedMcastAlgoPairs: *mut DOT11_AUTH_CIPHER_PAIR,
|
2147
|
-
pub uAdhocNumSupportedUcastAlgoPairs: u32,
|
2148
|
-
pub pAdhocSupportedUcastAlgoPairs: *mut DOT11_AUTH_CIPHER_PAIR,
|
2149
|
-
pub uAdhocNumSupportedMcastAlgoPairs: u32,
|
2150
|
-
pub pAdhocSupportedMcastAlgoPairs: *mut DOT11_AUTH_CIPHER_PAIR,
|
2151
|
-
pub bAutoPowerSaveMode: super::super::Foundation::BOOLEAN,
|
2152
|
-
pub uMaxNetworkOffloadListSize: u32,
|
2153
|
-
pub bMFPCapable: super::super::Foundation::BOOLEAN,
|
2154
|
-
pub uInfraNumSupportedMcastMgmtAlgoPairs: u32,
|
2155
|
-
pub pInfraSupportedMcastMgmtAlgoPairs: *mut DOT11_AUTH_CIPHER_PAIR,
|
2156
|
-
pub bNeighborReportSupported: super::super::Foundation::BOOLEAN,
|
2157
|
-
pub bAPChannelReportSupported: super::super::Foundation::BOOLEAN,
|
2158
|
-
pub bActionFramesSupported: super::super::Foundation::BOOLEAN,
|
2159
|
-
pub bANQPQueryOffloadSupported: super::super::Foundation::BOOLEAN,
|
2160
|
-
pub bHESSIDConnectionSupported: super::super::Foundation::BOOLEAN,
|
2161
|
-
}
|
2162
|
-
#[repr(C)]
|
2163
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2164
|
-
#[derive(Clone, Copy)]
|
2165
|
-
pub struct DOT11_EXTSTA_CAPABILITY {
|
2166
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2167
|
-
pub uScanSSIDListSize: u32,
|
2168
|
-
pub uDesiredBSSIDListSize: u32,
|
2169
|
-
pub uDesiredSSIDListSize: u32,
|
2170
|
-
pub uExcludedMacAddressListSize: u32,
|
2171
|
-
pub uPrivacyExemptionListSize: u32,
|
2172
|
-
pub uKeyMappingTableSize: u32,
|
2173
|
-
pub uDefaultKeyTableSize: u32,
|
2174
|
-
pub uWEPKeyValueMaxLength: u32,
|
2175
|
-
pub uPMKIDCacheSize: u32,
|
2176
|
-
pub uMaxNumPerSTADefaultKeyTables: u32,
|
2177
|
-
}
|
2178
|
-
#[repr(C)]
|
2179
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2180
|
-
#[derive(Clone, Copy)]
|
2181
|
-
pub struct DOT11_EXTSTA_RECV_CONTEXT {
|
2182
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2183
|
-
pub uReceiveFlags: u32,
|
2184
|
-
pub uPhyId: u32,
|
2185
|
-
pub uChCenterFrequency: u32,
|
2186
|
-
pub usNumberOfMPDUsReceived: u16,
|
2187
|
-
pub lRSSI: i32,
|
2188
|
-
pub ucDataRate: u8,
|
2189
|
-
pub uSizeMediaSpecificInfo: u32,
|
2190
|
-
pub pvMediaSpecificInfo: *mut core::ffi::c_void,
|
2191
|
-
pub ullTimestamp: u64,
|
2192
|
-
}
|
2193
|
-
#[repr(C)]
|
2194
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2195
|
-
#[derive(Clone, Copy)]
|
2196
|
-
pub struct DOT11_EXTSTA_SEND_CONTEXT {
|
2197
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2198
|
-
pub usExemptionActionType: u16,
|
2199
|
-
pub uPhyId: u32,
|
2200
|
-
pub uDelayedSleepValue: u32,
|
2201
|
-
pub pvMediaSpecificInfo: *mut core::ffi::c_void,
|
2202
|
-
pub uSendFlags: u32,
|
2203
|
-
}
|
2204
|
-
#[repr(C)]
|
2205
|
-
#[derive(Clone, Copy)]
|
2206
|
-
pub struct DOT11_FRAGMENT_DESCRIPTOR {
|
2207
|
-
pub uOffset: u32,
|
2208
|
-
pub uLength: u32,
|
2209
|
-
}
|
2210
|
-
#[repr(C)]
|
2211
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2212
|
-
#[derive(Clone, Copy)]
|
2213
|
-
pub struct DOT11_GO_NEGOTIATION_CONFIRMATION_SEND_COMPLETE_PARAMETERS {
|
2214
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2215
|
-
pub PeerDeviceAddress: [u8; 6],
|
2216
|
-
pub DialogToken: u8,
|
2217
|
-
pub Status: i32,
|
2218
|
-
pub uIEsOffset: u32,
|
2219
|
-
pub uIEsLength: u32,
|
2220
|
-
}
|
2221
|
-
#[repr(C)]
|
2222
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2223
|
-
#[derive(Clone, Copy)]
|
2224
|
-
pub struct DOT11_GO_NEGOTIATION_REQUEST_SEND_COMPLETE_PARAMETERS {
|
2225
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2226
|
-
pub PeerDeviceAddress: [u8; 6],
|
2227
|
-
pub DialogToken: u8,
|
2228
|
-
pub Status: i32,
|
2229
|
-
pub uIEsOffset: u32,
|
2230
|
-
pub uIEsLength: u32,
|
2231
|
-
}
|
2232
|
-
#[repr(C)]
|
2233
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2234
|
-
#[derive(Clone, Copy)]
|
2235
|
-
pub struct DOT11_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE_PARAMETERS {
|
2236
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2237
|
-
pub PeerDeviceAddress: [u8; 6],
|
2238
|
-
pub DialogToken: u8,
|
2239
|
-
pub Status: i32,
|
2240
|
-
pub uIEsOffset: u32,
|
2241
|
-
pub uIEsLength: u32,
|
2242
|
-
}
|
2243
|
-
#[repr(C)]
|
2244
|
-
#[derive(Clone, Copy)]
|
2245
|
-
pub struct DOT11_HOPPING_PATTERN_ENTRY {
|
2246
|
-
pub uHoppingPatternIndex: u32,
|
2247
|
-
pub uRandomTableFieldNumber: u32,
|
2248
|
-
}
|
2249
|
-
#[repr(C)]
|
2250
|
-
#[derive(Clone, Copy)]
|
2251
|
-
pub struct DOT11_HOPPING_PATTERN_ENTRY_LIST {
|
2252
|
-
pub uNumOfEntries: u32,
|
2253
|
-
pub uTotalNumOfEntries: u32,
|
2254
|
-
pub dot11HoppingPatternEntry: [DOT11_HOPPING_PATTERN_ENTRY; 1],
|
2255
|
-
}
|
2256
|
-
#[repr(C)]
|
2257
|
-
#[derive(Clone, Copy)]
|
2258
|
-
pub struct DOT11_HRDSSS_PHY_ATTRIBUTES {
|
2259
|
-
pub bShortPreambleOptionImplemented: super::super::Foundation::BOOLEAN,
|
2260
|
-
pub bPBCCOptionImplemented: super::super::Foundation::BOOLEAN,
|
2261
|
-
pub bChannelAgilityPresent: super::super::Foundation::BOOLEAN,
|
2262
|
-
pub uHRCCAModeSupported: u32,
|
2263
|
-
}
|
2264
|
-
#[repr(C)]
|
2265
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2266
|
-
#[derive(Clone, Copy)]
|
2267
|
-
pub struct DOT11_IBSS_PARAMS {
|
2268
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2269
|
-
pub bJoinOnly: super::super::Foundation::BOOLEAN,
|
2270
|
-
pub uIEsOffset: u32,
|
2271
|
-
pub uIEsLength: u32,
|
2272
|
-
}
|
2273
|
-
#[repr(C)]
|
2274
|
-
#[derive(Clone, Copy)]
|
2275
|
-
pub struct DOT11_IHV_VERSION_INFO {
|
2276
|
-
pub dwVerMin: u32,
|
2277
|
-
pub dwVerMax: u32,
|
2278
|
-
}
|
2279
|
-
#[repr(C)]
|
2280
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2281
|
-
#[derive(Clone, Copy)]
|
2282
|
-
pub struct DOT11_INCOMING_ASSOC_COMPLETION_PARAMETERS {
|
2283
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2284
|
-
pub PeerMacAddr: [u8; 6],
|
2285
|
-
pub uStatus: u32,
|
2286
|
-
pub ucErrorSource: u8,
|
2287
|
-
pub bReAssocReq: super::super::Foundation::BOOLEAN,
|
2288
|
-
pub bReAssocResp: super::super::Foundation::BOOLEAN,
|
2289
|
-
pub uAssocReqOffset: u32,
|
2290
|
-
pub uAssocReqSize: u32,
|
2291
|
-
pub uAssocRespOffset: u32,
|
2292
|
-
pub uAssocRespSize: u32,
|
2293
|
-
pub AuthAlgo: DOT11_AUTH_ALGORITHM,
|
2294
|
-
pub UnicastCipher: DOT11_CIPHER_ALGORITHM,
|
2295
|
-
pub MulticastCipher: DOT11_CIPHER_ALGORITHM,
|
2296
|
-
pub uActivePhyListOffset: u32,
|
2297
|
-
pub uActivePhyListSize: u32,
|
2298
|
-
pub uBeaconOffset: u32,
|
2299
|
-
pub uBeaconSize: u32,
|
2300
|
-
}
|
2301
|
-
#[repr(C)]
|
2302
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2303
|
-
#[derive(Clone, Copy)]
|
2304
|
-
pub struct DOT11_INCOMING_ASSOC_DECISION {
|
2305
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2306
|
-
pub PeerMacAddr: [u8; 6],
|
2307
|
-
pub bAccept: super::super::Foundation::BOOLEAN,
|
2308
|
-
pub usReasonCode: u16,
|
2309
|
-
pub uAssocResponseIEsOffset: u32,
|
2310
|
-
pub uAssocResponseIEsLength: u32,
|
2311
|
-
}
|
2312
|
-
#[repr(C)]
|
2313
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2314
|
-
#[derive(Clone, Copy)]
|
2315
|
-
pub struct DOT11_INCOMING_ASSOC_DECISION_V2 {
|
2316
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2317
|
-
pub PeerMacAddr: [u8; 6],
|
2318
|
-
pub bAccept: super::super::Foundation::BOOLEAN,
|
2319
|
-
pub usReasonCode: u16,
|
2320
|
-
pub uAssocResponseIEsOffset: u32,
|
2321
|
-
pub uAssocResponseIEsLength: u32,
|
2322
|
-
pub WFDStatus: u8,
|
2323
|
-
}
|
2324
|
-
#[repr(C)]
|
2325
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2326
|
-
#[derive(Clone, Copy)]
|
2327
|
-
pub struct DOT11_INCOMING_ASSOC_REQUEST_RECEIVED_PARAMETERS {
|
2328
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2329
|
-
pub PeerMacAddr: [u8; 6],
|
2330
|
-
pub bReAssocReq: super::super::Foundation::BOOLEAN,
|
2331
|
-
pub uAssocReqOffset: u32,
|
2332
|
-
pub uAssocReqSize: u32,
|
2333
|
-
}
|
2334
|
-
#[repr(C)]
|
2335
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2336
|
-
#[derive(Clone, Copy)]
|
2337
|
-
pub struct DOT11_INCOMING_ASSOC_STARTED_PARAMETERS {
|
2338
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2339
|
-
pub PeerMacAddr: [u8; 6],
|
2340
|
-
}
|
2341
|
-
#[repr(C)]
|
2342
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2343
|
-
#[derive(Clone, Copy)]
|
2344
|
-
pub struct DOT11_INVITATION_REQUEST_SEND_COMPLETE_PARAMETERS {
|
2345
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2346
|
-
pub PeerDeviceAddress: [u8; 6],
|
2347
|
-
pub ReceiverAddress: [u8; 6],
|
2348
|
-
pub DialogToken: u8,
|
2349
|
-
pub Status: i32,
|
2350
|
-
pub uIEsOffset: u32,
|
2351
|
-
pub uIEsLength: u32,
|
2352
|
-
}
|
2353
|
-
#[repr(C)]
|
2354
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2355
|
-
#[derive(Clone, Copy)]
|
2356
|
-
pub struct DOT11_INVITATION_RESPONSE_SEND_COMPLETE_PARAMETERS {
|
2357
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2358
|
-
pub ReceiverDeviceAddress: [u8; 6],
|
2359
|
-
pub DialogToken: u8,
|
2360
|
-
pub Status: i32,
|
2361
|
-
pub uIEsOffset: u32,
|
2362
|
-
pub uIEsLength: u32,
|
2363
|
-
}
|
2364
|
-
#[repr(C)]
|
2365
|
-
#[derive(Clone, Copy)]
|
2366
|
-
pub struct DOT11_IV48_COUNTER {
|
2367
|
-
pub uIV32Counter: u32,
|
2368
|
-
pub usIV16Counter: u16,
|
2369
|
-
}
|
2370
|
-
#[repr(C)]
|
2371
|
-
#[derive(Clone, Copy)]
|
2372
|
-
pub struct DOT11_JOIN_REQUEST {
|
2373
|
-
pub uJoinFailureTimeout: u32,
|
2374
|
-
pub OperationalRateSet: DOT11_RATE_SET,
|
2375
|
-
pub uChCenterFrequency: u32,
|
2376
|
-
pub dot11BSSDescription: DOT11_BSS_DESCRIPTION,
|
2377
|
-
}
|
2378
|
-
#[repr(C)]
|
2379
|
-
#[derive(Clone, Copy)]
|
2380
|
-
pub struct DOT11_KEY_ALGO_BIP {
|
2381
|
-
pub ucIPN: [u8; 6],
|
2382
|
-
pub ulBIPKeyLength: u32,
|
2383
|
-
pub ucBIPKey: [u8; 1],
|
2384
|
-
}
|
2385
|
-
#[repr(C)]
|
2386
|
-
#[derive(Clone, Copy)]
|
2387
|
-
pub struct DOT11_KEY_ALGO_BIP_GMAC_256 {
|
2388
|
-
pub ucIPN: [u8; 6],
|
2389
|
-
pub ulBIPGmac256KeyLength: u32,
|
2390
|
-
pub ucBIPGmac256Key: [u8; 1],
|
2391
|
-
}
|
2392
|
-
#[repr(C)]
|
2393
|
-
#[derive(Clone, Copy)]
|
2394
|
-
pub struct DOT11_KEY_ALGO_CCMP {
|
2395
|
-
pub ucIV48Counter: [u8; 6],
|
2396
|
-
pub ulCCMPKeyLength: u32,
|
2397
|
-
pub ucCCMPKey: [u8; 1],
|
2398
|
-
}
|
2399
|
-
#[repr(C)]
|
2400
|
-
#[derive(Clone, Copy)]
|
2401
|
-
pub struct DOT11_KEY_ALGO_GCMP {
|
2402
|
-
pub ucIV48Counter: [u8; 6],
|
2403
|
-
pub ulGCMPKeyLength: u32,
|
2404
|
-
pub ucGCMPKey: [u8; 1],
|
2405
|
-
}
|
2406
|
-
#[repr(C)]
|
2407
|
-
#[derive(Clone, Copy)]
|
2408
|
-
pub struct DOT11_KEY_ALGO_GCMP_256 {
|
2409
|
-
pub ucIV48Counter: [u8; 6],
|
2410
|
-
pub ulGCMP256KeyLength: u32,
|
2411
|
-
pub ucGCMP256Key: [u8; 1],
|
2412
|
-
}
|
2413
|
-
#[repr(C)]
|
2414
|
-
#[derive(Clone, Copy)]
|
2415
|
-
pub struct DOT11_KEY_ALGO_TKIP_MIC {
|
2416
|
-
pub ucIV48Counter: [u8; 6],
|
2417
|
-
pub ulTKIPKeyLength: u32,
|
2418
|
-
pub ulMICKeyLength: u32,
|
2419
|
-
pub ucTKIPMICKeys: [u8; 1],
|
2420
|
-
}
|
2421
|
-
#[repr(C)]
|
2422
|
-
#[derive(Clone, Copy)]
|
2423
|
-
pub struct DOT11_LINK_QUALITY_ENTRY {
|
2424
|
-
pub PeerMacAddr: [u8; 6],
|
2425
|
-
pub ucLinkQuality: u8,
|
2426
|
-
}
|
2427
|
-
#[repr(C)]
|
2428
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2429
|
-
#[derive(Clone, Copy)]
|
2430
|
-
pub struct DOT11_LINK_QUALITY_PARAMETERS {
|
2431
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2432
|
-
pub uLinkQualityListSize: u32,
|
2433
|
-
pub uLinkQualityListOffset: u32,
|
2434
|
-
}
|
2435
|
-
#[repr(C)]
|
2436
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2437
|
-
#[derive(Clone, Copy)]
|
2438
|
-
pub struct DOT11_MAC_ADDRESS_LIST {
|
2439
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2440
|
-
pub uNumOfEntries: u32,
|
2441
|
-
pub uTotalNumOfEntries: u32,
|
2442
|
-
pub MacAddrs: [u8; 6],
|
2443
|
-
}
|
2444
|
-
#[repr(C)]
|
2445
|
-
#[derive(Clone, Copy)]
|
2446
|
-
pub struct DOT11_MAC_FRAME_STATISTICS {
|
2447
|
-
pub ullTransmittedFrameCount: u64,
|
2448
|
-
pub ullReceivedFrameCount: u64,
|
2449
|
-
pub ullTransmittedFailureFrameCount: u64,
|
2450
|
-
pub ullReceivedFailureFrameCount: u64,
|
2451
|
-
pub ullWEPExcludedCount: u64,
|
2452
|
-
pub ullTKIPLocalMICFailures: u64,
|
2453
|
-
pub ullTKIPReplays: u64,
|
2454
|
-
pub ullTKIPICVErrorCount: u64,
|
2455
|
-
pub ullCCMPReplays: u64,
|
2456
|
-
pub ullCCMPDecryptErrors: u64,
|
2457
|
-
pub ullWEPUndecryptableCount: u64,
|
2458
|
-
pub ullWEPICVErrorCount: u64,
|
2459
|
-
pub ullDecryptSuccessCount: u64,
|
2460
|
-
pub ullDecryptFailureCount: u64,
|
2461
|
-
}
|
2462
|
-
#[repr(C)]
|
2463
|
-
#[derive(Clone, Copy)]
|
2464
|
-
pub struct DOT11_MAC_INFO {
|
2465
|
-
pub uReserved: u32,
|
2466
|
-
pub uNdisPortNumber: u32,
|
2467
|
-
pub MacAddr: [u8; 6],
|
2468
|
-
}
|
2469
|
-
#[repr(C)]
|
2470
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2471
|
-
#[derive(Clone, Copy)]
|
2472
|
-
pub struct DOT11_MAC_PARAMETERS {
|
2473
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2474
|
-
pub uOpmodeMask: u32,
|
2475
|
-
}
|
2476
|
-
#[repr(C)]
|
2477
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2478
|
-
#[derive(Clone, Copy)]
|
2479
|
-
pub struct DOT11_MANUFACTURING_CALLBACK_PARAMETERS {
|
2480
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2481
|
-
pub dot11ManufacturingCallbackType: DOT11_MANUFACTURING_CALLBACK_TYPE,
|
2482
|
-
pub uStatus: u32,
|
2483
|
-
pub pvContext: *mut core::ffi::c_void,
|
2484
|
-
}
|
2485
|
-
#[repr(C)]
|
2486
|
-
#[derive(Clone, Copy)]
|
2487
|
-
pub struct DOT11_MANUFACTURING_FUNCTIONAL_TEST_QUERY_ADC {
|
2488
|
-
pub Dot11Band: DOT11_BAND,
|
2489
|
-
pub uChannel: u32,
|
2490
|
-
pub ADCPowerLevel: i32,
|
2491
|
-
}
|
2492
|
-
#[repr(C)]
|
2493
|
-
#[derive(Clone, Copy)]
|
2494
|
-
pub struct DOT11_MANUFACTURING_FUNCTIONAL_TEST_RX {
|
2495
|
-
pub bEnabled: super::super::Foundation::BOOLEAN,
|
2496
|
-
pub Dot11Band: DOT11_BAND,
|
2497
|
-
pub uChannel: u32,
|
2498
|
-
pub PowerLevel: i32,
|
2499
|
-
}
|
2500
|
-
#[repr(C)]
|
2501
|
-
#[derive(Clone, Copy)]
|
2502
|
-
pub struct DOT11_MANUFACTURING_FUNCTIONAL_TEST_TX {
|
2503
|
-
pub bEnable: super::super::Foundation::BOOLEAN,
|
2504
|
-
pub bOpenLoop: super::super::Foundation::BOOLEAN,
|
2505
|
-
pub Dot11Band: DOT11_BAND,
|
2506
|
-
pub uChannel: u32,
|
2507
|
-
pub uSetPowerLevel: u32,
|
2508
|
-
pub ADCPowerLevel: i32,
|
2509
|
-
}
|
2510
|
-
#[repr(C)]
|
2511
|
-
#[derive(Clone, Copy)]
|
2512
|
-
pub struct DOT11_MANUFACTURING_SELF_TEST_QUERY_RESULTS {
|
2513
|
-
pub SelfTestType: DOT11_MANUFACTURING_SELF_TEST_TYPE,
|
2514
|
-
pub uTestID: u32,
|
2515
|
-
pub bResult: super::super::Foundation::BOOLEAN,
|
2516
|
-
pub uPinFailedBitMask: u32,
|
2517
|
-
pub pvContext: *mut core::ffi::c_void,
|
2518
|
-
pub uBytesWrittenOut: u32,
|
2519
|
-
pub ucBufferOut: [u8; 1],
|
2520
|
-
}
|
2521
|
-
#[repr(C)]
|
2522
|
-
#[derive(Clone, Copy)]
|
2523
|
-
pub struct DOT11_MANUFACTURING_SELF_TEST_SET_PARAMS {
|
2524
|
-
pub SelfTestType: DOT11_MANUFACTURING_SELF_TEST_TYPE,
|
2525
|
-
pub uTestID: u32,
|
2526
|
-
pub uPinBitMask: u32,
|
2527
|
-
pub pvContext: *mut core::ffi::c_void,
|
2528
|
-
pub uBufferLength: u32,
|
2529
|
-
pub ucBufferIn: [u8; 1],
|
2530
|
-
}
|
2531
|
-
#[repr(C)]
|
2532
|
-
#[derive(Clone, Copy)]
|
2533
|
-
pub struct DOT11_MANUFACTURING_TEST {
|
2534
|
-
pub dot11ManufacturingTestType: DOT11_MANUFACTURING_TEST_TYPE,
|
2535
|
-
pub uBufferLength: u32,
|
2536
|
-
pub ucBuffer: [u8; 1],
|
2537
|
-
}
|
2538
|
-
#[repr(C)]
|
2539
|
-
#[derive(Clone, Copy)]
|
2540
|
-
pub struct DOT11_MANUFACTURING_TEST_QUERY_DATA {
|
2541
|
-
pub uKey: u32,
|
2542
|
-
pub uOffset: u32,
|
2543
|
-
pub uBufferLength: u32,
|
2544
|
-
pub uBytesRead: u32,
|
2545
|
-
pub ucBufferOut: [u8; 1],
|
2546
|
-
}
|
2547
|
-
#[repr(C)]
|
2548
|
-
#[derive(Clone, Copy)]
|
2549
|
-
pub struct DOT11_MANUFACTURING_TEST_SET_DATA {
|
2550
|
-
pub uKey: u32,
|
2551
|
-
pub uOffset: u32,
|
2552
|
-
pub uBufferLength: u32,
|
2553
|
-
pub ucBufferIn: [u8; 1],
|
2554
|
-
}
|
2555
|
-
#[repr(C)]
|
2556
|
-
#[derive(Clone, Copy)]
|
2557
|
-
pub struct DOT11_MANUFACTURING_TEST_SLEEP {
|
2558
|
-
pub uSleepTime: u32,
|
2559
|
-
pub pvContext: *mut core::ffi::c_void,
|
2560
|
-
}
|
2561
|
-
#[repr(C)]
|
2562
|
-
#[derive(Clone, Copy)]
|
2563
|
-
pub struct DOT11_MD_CAPABILITY_ENTRY_LIST {
|
2564
|
-
pub uNumOfEntries: u32,
|
2565
|
-
pub uTotalNumOfEntries: u32,
|
2566
|
-
pub dot11MDCapabilityEntry: [DOT11_MULTI_DOMAIN_CAPABILITY_ENTRY; 1],
|
2567
|
-
}
|
2568
|
-
#[repr(C)]
|
2569
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2570
|
-
#[derive(Clone, Copy)]
|
2571
|
-
pub struct DOT11_MPDU_MAX_LENGTH_INDICATION {
|
2572
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2573
|
-
pub uPhyId: u32,
|
2574
|
-
pub uMPDUMaxLength: u32,
|
2575
|
-
}
|
2576
|
-
#[repr(C)]
|
2577
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
2578
|
-
#[derive(Clone, Copy)]
|
2579
|
-
pub struct DOT11_MSONEX_RESULT_PARAMS {
|
2580
|
-
pub Dot11OnexAuthStatus: ONEX_AUTH_STATUS,
|
2581
|
-
pub Dot11OneXReasonCode: ONEX_REASON_CODE,
|
2582
|
-
pub pbMPPESendKey: *mut u8,
|
2583
|
-
pub dwMPPESendKeyLen: u32,
|
2584
|
-
pub pbMPPERecvKey: *mut u8,
|
2585
|
-
pub dwMPPERecvKeyLen: u32,
|
2586
|
-
pub pDot11EapResult: *mut DOT11_EAP_RESULT,
|
2587
|
-
}
|
2588
|
-
#[repr(C)]
|
2589
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
2590
|
-
#[derive(Clone, Copy)]
|
2591
|
-
pub struct DOT11_MSSECURITY_SETTINGS {
|
2592
|
-
pub dot11AuthAlgorithm: DOT11_AUTH_ALGORITHM,
|
2593
|
-
pub dot11CipherAlgorithm: DOT11_CIPHER_ALGORITHM,
|
2594
|
-
pub fOneXEnabled: super::super::Foundation::BOOL,
|
2595
|
-
pub eapMethodType: super::super::Security::ExtensibleAuthenticationProtocol::EAP_METHOD_TYPE,
|
2596
|
-
pub dwEapConnectionDataLen: u32,
|
2597
|
-
pub pEapConnectionData: *mut u8,
|
2598
|
-
}
|
2599
|
-
#[repr(C)]
|
2600
|
-
#[derive(Clone, Copy)]
|
2601
|
-
pub struct DOT11_MULTI_DOMAIN_CAPABILITY_ENTRY {
|
2602
|
-
pub uMultiDomainCapabilityIndex: u32,
|
2603
|
-
pub uFirstChannelNumber: u32,
|
2604
|
-
pub uNumberOfChannels: u32,
|
2605
|
-
pub lMaximumTransmitPowerLevel: i32,
|
2606
|
-
}
|
2607
|
-
#[repr(C)]
|
2608
|
-
#[derive(Clone, Copy)]
|
2609
|
-
pub struct DOT11_NETWORK {
|
2610
|
-
pub dot11Ssid: DOT11_SSID,
|
2611
|
-
pub dot11BssType: DOT11_BSS_TYPE,
|
2612
|
-
}
|
2613
|
-
#[repr(C)]
|
2614
|
-
#[derive(Clone, Copy)]
|
2615
|
-
pub struct DOT11_NETWORK_LIST {
|
2616
|
-
pub dwNumberOfItems: u32,
|
2617
|
-
pub dwIndex: u32,
|
2618
|
-
pub Network: [DOT11_NETWORK; 1],
|
2619
|
-
}
|
2620
|
-
#[repr(C)]
|
2621
|
-
#[derive(Clone, Copy)]
|
2622
|
-
pub struct DOT11_NIC_SPECIFIC_EXTENSION {
|
2623
|
-
pub uBufferLength: u32,
|
2624
|
-
pub uTotalBufferLength: u32,
|
2625
|
-
pub ucBuffer: [u8; 1],
|
2626
|
-
}
|
2627
|
-
#[repr(C)]
|
2628
|
-
#[derive(Clone, Copy)]
|
2629
|
-
pub struct DOT11_OFDM_PHY_ATTRIBUTES {
|
2630
|
-
pub uFrequencyBandsSupported: u32,
|
2631
|
-
}
|
2632
|
-
#[repr(C)]
|
2633
|
-
#[derive(Clone, Copy)]
|
2634
|
-
pub struct DOT11_OFFLOAD_CAPABILITY {
|
2635
|
-
pub uReserved: u32,
|
2636
|
-
pub uFlags: u32,
|
2637
|
-
pub uSupportedWEPAlgorithms: u32,
|
2638
|
-
pub uNumOfReplayWindows: u32,
|
2639
|
-
pub uMaxWEPKeyMappingLength: u32,
|
2640
|
-
pub uSupportedAuthAlgorithms: u32,
|
2641
|
-
pub uMaxAuthKeyMappingLength: u32,
|
2642
|
-
}
|
2643
|
-
#[repr(C)]
|
2644
|
-
#[derive(Clone, Copy)]
|
2645
|
-
pub struct DOT11_OFFLOAD_NETWORK {
|
2646
|
-
pub Ssid: DOT11_SSID,
|
2647
|
-
pub UnicastCipher: DOT11_CIPHER_ALGORITHM,
|
2648
|
-
pub AuthAlgo: DOT11_AUTH_ALGORITHM,
|
2649
|
-
pub Dot11ChannelHints: [DOT11_CHANNEL_HINT; 4],
|
2650
|
-
}
|
2651
|
-
#[repr(C)]
|
2652
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2653
|
-
#[derive(Clone, Copy)]
|
2654
|
-
pub struct DOT11_OFFLOAD_NETWORK_LIST_INFO {
|
2655
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2656
|
-
pub ulFlags: u32,
|
2657
|
-
pub FastScanPeriod: u32,
|
2658
|
-
pub FastScanIterations: u32,
|
2659
|
-
pub SlowScanPeriod: u32,
|
2660
|
-
pub uNumOfEntries: u32,
|
2661
|
-
pub offloadNetworkList: [DOT11_OFFLOAD_NETWORK; 1],
|
2662
|
-
}
|
2663
|
-
#[repr(C)]
|
2664
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2665
|
-
#[derive(Clone, Copy)]
|
2666
|
-
pub struct DOT11_OFFLOAD_NETWORK_STATUS_PARAMETERS {
|
2667
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2668
|
-
pub Status: i32,
|
2669
|
-
}
|
2670
|
-
#[repr(C)]
|
2671
|
-
#[derive(Clone, Copy)]
|
2672
|
-
pub struct DOT11_OI {
|
2673
|
-
pub OILength: u16,
|
2674
|
-
pub OI: [u8; 5],
|
2675
|
-
}
|
2676
|
-
#[repr(C)]
|
2677
|
-
#[derive(Clone, Copy)]
|
2678
|
-
pub struct DOT11_OPERATION_MODE_CAPABILITY {
|
2679
|
-
pub uReserved: u32,
|
2680
|
-
pub uMajorVersion: u32,
|
2681
|
-
pub uMinorVersion: u32,
|
2682
|
-
pub uNumOfTXBuffers: u32,
|
2683
|
-
pub uNumOfRXBuffers: u32,
|
2684
|
-
pub uOpModeCapability: u32,
|
2685
|
-
}
|
2686
|
-
#[repr(C)]
|
2687
|
-
#[derive(Clone, Copy)]
|
2688
|
-
pub struct DOT11_OPTIONAL_CAPABILITY {
|
2689
|
-
pub uReserved: u32,
|
2690
|
-
pub bDot11PCF: super::super::Foundation::BOOLEAN,
|
2691
|
-
pub bDot11PCFMPDUTransferToPC: super::super::Foundation::BOOLEAN,
|
2692
|
-
pub bStrictlyOrderedServiceClass: super::super::Foundation::BOOLEAN,
|
2693
|
-
}
|
2694
|
-
#[repr(C)]
|
2695
|
-
#[derive(Clone, Copy)]
|
2696
|
-
pub struct DOT11_PEER_INFO {
|
2697
|
-
pub MacAddress: [u8; 6],
|
2698
|
-
pub usCapabilityInformation: u16,
|
2699
|
-
pub AuthAlgo: DOT11_AUTH_ALGORITHM,
|
2700
|
-
pub UnicastCipherAlgo: DOT11_CIPHER_ALGORITHM,
|
2701
|
-
pub MulticastCipherAlgo: DOT11_CIPHER_ALGORITHM,
|
2702
|
-
pub bWpsEnabled: super::super::Foundation::BOOLEAN,
|
2703
|
-
pub usListenInterval: u16,
|
2704
|
-
pub ucSupportedRates: [u8; 255],
|
2705
|
-
pub usAssociationID: u16,
|
2706
|
-
pub AssociationState: DOT11_ASSOCIATION_STATE,
|
2707
|
-
pub PowerMode: DOT11_POWER_MODE,
|
2708
|
-
pub liAssociationUpTime: i64,
|
2709
|
-
pub Statistics: DOT11_PEER_STATISTICS,
|
2710
|
-
}
|
2711
|
-
#[repr(C)]
|
2712
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2713
|
-
#[derive(Clone, Copy)]
|
2714
|
-
pub struct DOT11_PEER_INFO_LIST {
|
2715
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2716
|
-
pub uNumOfEntries: u32,
|
2717
|
-
pub uTotalNumOfEntries: u32,
|
2718
|
-
pub PeerInfo: [DOT11_PEER_INFO; 1],
|
2719
|
-
}
|
2720
|
-
#[repr(C)]
|
2721
|
-
#[derive(Clone, Copy)]
|
2722
|
-
pub struct DOT11_PEER_STATISTICS {
|
2723
|
-
pub ullDecryptSuccessCount: u64,
|
2724
|
-
pub ullDecryptFailureCount: u64,
|
2725
|
-
pub ullTxPacketSuccessCount: u64,
|
2726
|
-
pub ullTxPacketFailureCount: u64,
|
2727
|
-
pub ullRxPacketSuccessCount: u64,
|
2728
|
-
pub ullRxPacketFailureCount: u64,
|
2729
|
-
}
|
2730
|
-
#[repr(C)]
|
2731
|
-
#[derive(Clone, Copy)]
|
2732
|
-
pub struct DOT11_PER_MSDU_COUNTERS {
|
2733
|
-
pub uTransmittedFragmentCount: u32,
|
2734
|
-
pub uRetryCount: u32,
|
2735
|
-
pub uRTSSuccessCount: u32,
|
2736
|
-
pub uRTSFailureCount: u32,
|
2737
|
-
pub uACKFailureCount: u32,
|
2738
|
-
}
|
2739
|
-
#[repr(C)]
|
2740
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2741
|
-
#[derive(Clone, Copy)]
|
2742
|
-
pub struct DOT11_PHY_ATTRIBUTES {
|
2743
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2744
|
-
pub PhyType: DOT11_PHY_TYPE,
|
2745
|
-
pub bHardwarePhyState: super::super::Foundation::BOOLEAN,
|
2746
|
-
pub bSoftwarePhyState: super::super::Foundation::BOOLEAN,
|
2747
|
-
pub bCFPollable: super::super::Foundation::BOOLEAN,
|
2748
|
-
pub uMPDUMaxLength: u32,
|
2749
|
-
pub TempType: DOT11_TEMP_TYPE,
|
2750
|
-
pub DiversitySupport: DOT11_DIVERSITY_SUPPORT,
|
2751
|
-
pub PhySpecificAttributes: DOT11_PHY_ATTRIBUTES_0,
|
2752
|
-
pub uNumberSupportedPowerLevels: u32,
|
2753
|
-
pub TxPowerLevels: [u32; 8],
|
2754
|
-
pub uNumDataRateMappingEntries: u32,
|
2755
|
-
pub DataRateMappingEntries: [DOT11_DATA_RATE_MAPPING_ENTRY; 126],
|
2756
|
-
pub SupportedDataRatesValue: DOT11_SUPPORTED_DATA_RATES_VALUE_V2,
|
2757
|
-
}
|
2758
|
-
#[repr(C)]
|
2759
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2760
|
-
#[derive(Clone, Copy)]
|
2761
|
-
pub union DOT11_PHY_ATTRIBUTES_0 {
|
2762
|
-
pub HRDSSSAttributes: DOT11_HRDSSS_PHY_ATTRIBUTES,
|
2763
|
-
pub OFDMAttributes: DOT11_OFDM_PHY_ATTRIBUTES,
|
2764
|
-
pub ERPAttributes: DOT11_ERP_PHY_ATTRIBUTES,
|
2765
|
-
}
|
2766
|
-
#[repr(C)]
|
2767
|
-
#[derive(Clone, Copy)]
|
2768
|
-
pub struct DOT11_PHY_FRAME_STATISTICS {
|
2769
|
-
pub ullTransmittedFrameCount: u64,
|
2770
|
-
pub ullMulticastTransmittedFrameCount: u64,
|
2771
|
-
pub ullFailedCount: u64,
|
2772
|
-
pub ullRetryCount: u64,
|
2773
|
-
pub ullMultipleRetryCount: u64,
|
2774
|
-
pub ullMaxTXLifetimeExceededCount: u64,
|
2775
|
-
pub ullTransmittedFragmentCount: u64,
|
2776
|
-
pub ullRTSSuccessCount: u64,
|
2777
|
-
pub ullRTSFailureCount: u64,
|
2778
|
-
pub ullACKFailureCount: u64,
|
2779
|
-
pub ullReceivedFrameCount: u64,
|
2780
|
-
pub ullMulticastReceivedFrameCount: u64,
|
2781
|
-
pub ullPromiscuousReceivedFrameCount: u64,
|
2782
|
-
pub ullMaxRXLifetimeExceededCount: u64,
|
2783
|
-
pub ullFrameDuplicateCount: u64,
|
2784
|
-
pub ullReceivedFragmentCount: u64,
|
2785
|
-
pub ullPromiscuousReceivedFragmentCount: u64,
|
2786
|
-
pub ullFCSErrorCount: u64,
|
2787
|
-
}
|
2788
|
-
#[repr(C)]
|
2789
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2790
|
-
#[derive(Clone, Copy)]
|
2791
|
-
pub struct DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS {
|
2792
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2793
|
-
pub ulPhyId: u32,
|
2794
|
-
pub Anonymous: DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS_0,
|
2795
|
-
}
|
2796
|
-
#[repr(C)]
|
2797
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2798
|
-
#[derive(Clone, Copy)]
|
2799
|
-
pub union DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS_0 {
|
2800
|
-
pub ulChannel: u32,
|
2801
|
-
pub ulFrequency: u32,
|
2802
|
-
}
|
2803
|
-
#[repr(C)]
|
2804
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2805
|
-
#[derive(Clone, Copy)]
|
2806
|
-
pub struct DOT11_PHY_ID_LIST {
|
2807
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2808
|
-
pub uNumOfEntries: u32,
|
2809
|
-
pub uTotalNumOfEntries: u32,
|
2810
|
-
pub dot11PhyId: [u32; 1],
|
2811
|
-
}
|
2812
|
-
#[repr(C)]
|
2813
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2814
|
-
#[derive(Clone, Copy)]
|
2815
|
-
pub struct DOT11_PHY_STATE_PARAMETERS {
|
2816
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2817
|
-
pub uPhyId: u32,
|
2818
|
-
pub bHardwarePhyState: super::super::Foundation::BOOLEAN,
|
2819
|
-
pub bSoftwarePhyState: super::super::Foundation::BOOLEAN,
|
2820
|
-
}
|
2821
|
-
#[repr(C)]
|
2822
|
-
#[derive(Clone, Copy)]
|
2823
|
-
pub struct DOT11_PHY_TYPE_INFO {
|
2824
|
-
pub dot11PhyType: DOT11_PHY_TYPE,
|
2825
|
-
pub bUseParameters: super::super::Foundation::BOOLEAN,
|
2826
|
-
pub uProbeDelay: u32,
|
2827
|
-
pub uMinChannelTime: u32,
|
2828
|
-
pub uMaxChannelTime: u32,
|
2829
|
-
pub ChDescriptionType: CH_DESCRIPTION_TYPE,
|
2830
|
-
pub uChannelListSize: u32,
|
2831
|
-
pub ucChannelListBuffer: [u8; 1],
|
2832
|
-
}
|
2833
|
-
#[repr(C)]
|
2834
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2835
|
-
#[derive(Clone, Copy)]
|
2836
|
-
pub struct DOT11_PHY_TYPE_LIST {
|
2837
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2838
|
-
pub uNumOfEntries: u32,
|
2839
|
-
pub uTotalNumOfEntries: u32,
|
2840
|
-
pub dot11PhyType: [DOT11_PHY_TYPE; 1],
|
2841
|
-
}
|
2842
|
-
#[repr(C)]
|
2843
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2844
|
-
#[derive(Clone, Copy)]
|
2845
|
-
pub struct DOT11_PMKID_CANDIDATE_LIST_PARAMETERS {
|
2846
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2847
|
-
pub uCandidateListSize: u32,
|
2848
|
-
pub uCandidateListOffset: u32,
|
2849
|
-
}
|
2850
|
-
#[repr(C)]
|
2851
|
-
#[derive(Clone, Copy)]
|
2852
|
-
pub struct DOT11_PMKID_ENTRY {
|
2853
|
-
pub BSSID: [u8; 6],
|
2854
|
-
pub PMKID: [u8; 16],
|
2855
|
-
pub uFlags: u32,
|
2856
|
-
}
|
2857
|
-
#[repr(C)]
|
2858
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2859
|
-
#[derive(Clone, Copy)]
|
2860
|
-
pub struct DOT11_PMKID_LIST {
|
2861
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2862
|
-
pub uNumOfEntries: u32,
|
2863
|
-
pub uTotalNumOfEntries: u32,
|
2864
|
-
pub PMKIDs: [DOT11_PMKID_ENTRY; 1],
|
2865
|
-
}
|
2866
|
-
#[repr(C)]
|
2867
|
-
#[derive(Clone, Copy)]
|
2868
|
-
pub struct DOT11_PORT_STATE {
|
2869
|
-
pub PeerMacAddress: [u8; 6],
|
2870
|
-
pub uSessionId: u32,
|
2871
|
-
pub bPortControlled: super::super::Foundation::BOOL,
|
2872
|
-
pub bPortAuthorized: super::super::Foundation::BOOL,
|
2873
|
-
}
|
2874
|
-
#[repr(C)]
|
2875
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2876
|
-
#[derive(Clone, Copy)]
|
2877
|
-
pub struct DOT11_PORT_STATE_NOTIFICATION {
|
2878
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2879
|
-
pub PeerMac: [u8; 6],
|
2880
|
-
pub bOpen: super::super::Foundation::BOOLEAN,
|
2881
|
-
}
|
2882
|
-
#[repr(C)]
|
2883
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2884
|
-
#[derive(Clone, Copy)]
|
2885
|
-
pub struct DOT11_POWER_MGMT_AUTO_MODE_ENABLED_INFO {
|
2886
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2887
|
-
pub bEnabled: super::super::Foundation::BOOLEAN,
|
2888
|
-
}
|
2889
|
-
#[repr(C)]
|
2890
|
-
#[derive(Clone, Copy)]
|
2891
|
-
pub struct DOT11_POWER_MGMT_MODE {
|
2892
|
-
pub dot11PowerMode: DOT11_POWER_MODE,
|
2893
|
-
pub uPowerSaveLevel: u32,
|
2894
|
-
pub usListenInterval: u16,
|
2895
|
-
pub usAID: u16,
|
2896
|
-
pub bReceiveDTIMs: super::super::Foundation::BOOLEAN,
|
2897
|
-
}
|
2898
|
-
#[repr(C)]
|
2899
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2900
|
-
#[derive(Clone, Copy)]
|
2901
|
-
pub struct DOT11_POWER_MGMT_MODE_STATUS_INFO {
|
2902
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2903
|
-
pub PowerSaveMode: DOT11_POWER_MODE,
|
2904
|
-
pub uPowerSaveLevel: u32,
|
2905
|
-
pub Reason: DOT11_POWER_MODE_REASON,
|
2906
|
-
}
|
2907
|
-
#[repr(C)]
|
2908
|
-
#[derive(Clone, Copy)]
|
2909
|
-
pub struct DOT11_PRIVACY_EXEMPTION {
|
2910
|
-
pub usEtherType: u16,
|
2911
|
-
pub usExemptionActionType: u16,
|
2912
|
-
pub usExemptionPacketType: u16,
|
2913
|
-
}
|
2914
|
-
#[repr(C)]
|
2915
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2916
|
-
#[derive(Clone, Copy)]
|
2917
|
-
pub struct DOT11_PRIVACY_EXEMPTION_LIST {
|
2918
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2919
|
-
pub uNumOfEntries: u32,
|
2920
|
-
pub uTotalNumOfEntries: u32,
|
2921
|
-
pub PrivacyExemptionEntries: [DOT11_PRIVACY_EXEMPTION; 1],
|
2922
|
-
}
|
2923
|
-
#[repr(C)]
|
2924
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2925
|
-
#[derive(Clone, Copy)]
|
2926
|
-
pub struct DOT11_PROVISION_DISCOVERY_REQUEST_SEND_COMPLETE_PARAMETERS {
|
2927
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2928
|
-
pub PeerDeviceAddress: [u8; 6],
|
2929
|
-
pub ReceiverAddress: [u8; 6],
|
2930
|
-
pub DialogToken: u8,
|
2931
|
-
pub Status: i32,
|
2932
|
-
pub uIEsOffset: u32,
|
2933
|
-
pub uIEsLength: u32,
|
2934
|
-
}
|
2935
|
-
#[repr(C)]
|
2936
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2937
|
-
#[derive(Clone, Copy)]
|
2938
|
-
pub struct DOT11_PROVISION_DISCOVERY_RESPONSE_SEND_COMPLETE_PARAMETERS {
|
2939
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2940
|
-
pub ReceiverDeviceAddress: [u8; 6],
|
2941
|
-
pub DialogToken: u8,
|
2942
|
-
pub Status: i32,
|
2943
|
-
pub uIEsOffset: u32,
|
2944
|
-
pub uIEsLength: u32,
|
2945
|
-
}
|
2946
|
-
#[repr(C)]
|
2947
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2948
|
-
#[derive(Clone, Copy)]
|
2949
|
-
pub struct DOT11_QOS_PARAMS {
|
2950
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2951
|
-
pub ucEnabledQoSProtocolFlags: u8,
|
2952
|
-
}
|
2953
|
-
#[repr(C)]
|
2954
|
-
#[derive(Clone, Copy)]
|
2955
|
-
pub struct DOT11_QOS_TX_DURATION {
|
2956
|
-
pub uNominalMSDUSize: u32,
|
2957
|
-
pub uMinPHYRate: u32,
|
2958
|
-
pub uDuration: u32,
|
2959
|
-
}
|
2960
|
-
#[repr(C)]
|
2961
|
-
#[derive(Clone, Copy)]
|
2962
|
-
pub struct DOT11_QOS_TX_MEDIUM_TIME {
|
2963
|
-
pub dot11PeerAddress: [u8; 6],
|
2964
|
-
pub ucQoSPriority: u8,
|
2965
|
-
pub uMediumTimeAdmited: u32,
|
2966
|
-
}
|
2967
|
-
#[repr(C)]
|
2968
|
-
#[derive(Clone, Copy)]
|
2969
|
-
pub struct DOT11_RATE_SET {
|
2970
|
-
pub uRateSetLength: u32,
|
2971
|
-
pub ucRateSet: [u8; 126],
|
2972
|
-
}
|
2973
|
-
#[repr(C)]
|
2974
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2975
|
-
#[derive(Clone, Copy)]
|
2976
|
-
pub struct DOT11_RECEIVED_GO_NEGOTIATION_CONFIRMATION_PARAMETERS {
|
2977
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2978
|
-
pub PeerDeviceAddress: [u8; 6],
|
2979
|
-
pub DialogToken: u8,
|
2980
|
-
pub uIEsOffset: u32,
|
2981
|
-
pub uIEsLength: u32,
|
2982
|
-
}
|
2983
|
-
#[repr(C)]
|
2984
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2985
|
-
#[derive(Clone, Copy)]
|
2986
|
-
pub struct DOT11_RECEIVED_GO_NEGOTIATION_REQUEST_PARAMETERS {
|
2987
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2988
|
-
pub PeerDeviceAddress: [u8; 6],
|
2989
|
-
pub DialogToken: u8,
|
2990
|
-
pub RequestContext: *mut core::ffi::c_void,
|
2991
|
-
pub uIEsOffset: u32,
|
2992
|
-
pub uIEsLength: u32,
|
2993
|
-
}
|
2994
|
-
#[repr(C)]
|
2995
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
2996
|
-
#[derive(Clone, Copy)]
|
2997
|
-
pub struct DOT11_RECEIVED_GO_NEGOTIATION_RESPONSE_PARAMETERS {
|
2998
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
2999
|
-
pub PeerDeviceAddress: [u8; 6],
|
3000
|
-
pub DialogToken: u8,
|
3001
|
-
pub ResponseContext: *mut core::ffi::c_void,
|
3002
|
-
pub uIEsOffset: u32,
|
3003
|
-
pub uIEsLength: u32,
|
3004
|
-
}
|
3005
|
-
#[repr(C)]
|
3006
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3007
|
-
#[derive(Clone, Copy)]
|
3008
|
-
pub struct DOT11_RECEIVED_INVITATION_REQUEST_PARAMETERS {
|
3009
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3010
|
-
pub TransmitterDeviceAddress: [u8; 6],
|
3011
|
-
pub BSSID: [u8; 6],
|
3012
|
-
pub DialogToken: u8,
|
3013
|
-
pub RequestContext: *mut core::ffi::c_void,
|
3014
|
-
pub uIEsOffset: u32,
|
3015
|
-
pub uIEsLength: u32,
|
3016
|
-
}
|
3017
|
-
#[repr(C)]
|
3018
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3019
|
-
#[derive(Clone, Copy)]
|
3020
|
-
pub struct DOT11_RECEIVED_INVITATION_RESPONSE_PARAMETERS {
|
3021
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3022
|
-
pub TransmitterDeviceAddress: [u8; 6],
|
3023
|
-
pub BSSID: [u8; 6],
|
3024
|
-
pub DialogToken: u8,
|
3025
|
-
pub uIEsOffset: u32,
|
3026
|
-
pub uIEsLength: u32,
|
3027
|
-
}
|
3028
|
-
#[repr(C)]
|
3029
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3030
|
-
#[derive(Clone, Copy)]
|
3031
|
-
pub struct DOT11_RECEIVED_PROVISION_DISCOVERY_REQUEST_PARAMETERS {
|
3032
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3033
|
-
pub TransmitterDeviceAddress: [u8; 6],
|
3034
|
-
pub BSSID: [u8; 6],
|
3035
|
-
pub DialogToken: u8,
|
3036
|
-
pub RequestContext: *mut core::ffi::c_void,
|
3037
|
-
pub uIEsOffset: u32,
|
3038
|
-
pub uIEsLength: u32,
|
3039
|
-
}
|
3040
|
-
#[repr(C)]
|
3041
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3042
|
-
#[derive(Clone, Copy)]
|
3043
|
-
pub struct DOT11_RECEIVED_PROVISION_DISCOVERY_RESPONSE_PARAMETERS {
|
3044
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3045
|
-
pub TransmitterDeviceAddress: [u8; 6],
|
3046
|
-
pub BSSID: [u8; 6],
|
3047
|
-
pub DialogToken: u8,
|
3048
|
-
pub uIEsOffset: u32,
|
3049
|
-
pub uIEsLength: u32,
|
3050
|
-
}
|
3051
|
-
#[repr(C)]
|
3052
|
-
#[derive(Clone, Copy)]
|
3053
|
-
pub struct DOT11_RECV_EXTENSION_INFO {
|
3054
|
-
pub uVersion: u32,
|
3055
|
-
pub pvReserved: *mut core::ffi::c_void,
|
3056
|
-
pub dot11PhyType: DOT11_PHY_TYPE,
|
3057
|
-
pub uChCenterFrequency: u32,
|
3058
|
-
pub lRSSI: i32,
|
3059
|
-
pub lRSSIMin: i32,
|
3060
|
-
pub lRSSIMax: i32,
|
3061
|
-
pub uRSSI: u32,
|
3062
|
-
pub ucPriority: u8,
|
3063
|
-
pub ucDataRate: u8,
|
3064
|
-
pub ucPeerMacAddress: [u8; 6],
|
3065
|
-
pub dwExtendedStatus: u32,
|
3066
|
-
pub hWEPOffloadContext: super::super::Foundation::HANDLE,
|
3067
|
-
pub hAuthOffloadContext: super::super::Foundation::HANDLE,
|
3068
|
-
pub usWEPAppliedMask: u16,
|
3069
|
-
pub usWPAMSDUPriority: u16,
|
3070
|
-
pub dot11LowestIV48Counter: DOT11_IV48_COUNTER,
|
3071
|
-
pub usDot11LeftRWBitMap: u16,
|
3072
|
-
pub dot11HighestIV48Counter: DOT11_IV48_COUNTER,
|
3073
|
-
pub usDot11RightRWBitMap: u16,
|
3074
|
-
pub usNumberOfMPDUsReceived: u16,
|
3075
|
-
pub usNumberOfFragments: u16,
|
3076
|
-
pub pNdisPackets: [*mut core::ffi::c_void; 1],
|
3077
|
-
}
|
3078
|
-
#[repr(C)]
|
3079
|
-
#[derive(Clone, Copy)]
|
3080
|
-
pub struct DOT11_RECV_EXTENSION_INFO_V2 {
|
3081
|
-
pub uVersion: u32,
|
3082
|
-
pub pvReserved: *mut core::ffi::c_void,
|
3083
|
-
pub dot11PhyType: DOT11_PHY_TYPE,
|
3084
|
-
pub uChCenterFrequency: u32,
|
3085
|
-
pub lRSSI: i32,
|
3086
|
-
pub uRSSI: u32,
|
3087
|
-
pub ucPriority: u8,
|
3088
|
-
pub ucDataRate: u8,
|
3089
|
-
pub ucPeerMacAddress: [u8; 6],
|
3090
|
-
pub dwExtendedStatus: u32,
|
3091
|
-
pub hWEPOffloadContext: super::super::Foundation::HANDLE,
|
3092
|
-
pub hAuthOffloadContext: super::super::Foundation::HANDLE,
|
3093
|
-
pub usWEPAppliedMask: u16,
|
3094
|
-
pub usWPAMSDUPriority: u16,
|
3095
|
-
pub dot11LowestIV48Counter: DOT11_IV48_COUNTER,
|
3096
|
-
pub usDot11LeftRWBitMap: u16,
|
3097
|
-
pub dot11HighestIV48Counter: DOT11_IV48_COUNTER,
|
3098
|
-
pub usDot11RightRWBitMap: u16,
|
3099
|
-
pub usNumberOfMPDUsReceived: u16,
|
3100
|
-
pub usNumberOfFragments: u16,
|
3101
|
-
pub pNdisPackets: [*mut core::ffi::c_void; 1],
|
3102
|
-
}
|
3103
|
-
#[repr(C)]
|
3104
|
-
#[derive(Clone, Copy)]
|
3105
|
-
pub struct DOT11_RECV_SENSITIVITY {
|
3106
|
-
pub ucDataRate: u8,
|
3107
|
-
pub lRSSIMin: i32,
|
3108
|
-
pub lRSSIMax: i32,
|
3109
|
-
}
|
3110
|
-
#[repr(C)]
|
3111
|
-
#[derive(Clone, Copy)]
|
3112
|
-
pub struct DOT11_RECV_SENSITIVITY_LIST {
|
3113
|
-
pub Anonymous: DOT11_RECV_SENSITIVITY_LIST_0,
|
3114
|
-
pub uNumOfEntries: u32,
|
3115
|
-
pub uTotalNumOfEntries: u32,
|
3116
|
-
pub dot11RecvSensitivity: [DOT11_RECV_SENSITIVITY; 1],
|
3117
|
-
}
|
3118
|
-
#[repr(C)]
|
3119
|
-
#[derive(Clone, Copy)]
|
3120
|
-
pub union DOT11_RECV_SENSITIVITY_LIST_0 {
|
3121
|
-
pub dot11PhyType: DOT11_PHY_TYPE,
|
3122
|
-
pub uPhyId: u32,
|
3123
|
-
}
|
3124
|
-
#[repr(C)]
|
3125
|
-
#[derive(Clone, Copy)]
|
3126
|
-
pub struct DOT11_REG_DOMAINS_SUPPORT_VALUE {
|
3127
|
-
pub uNumOfEntries: u32,
|
3128
|
-
pub uTotalNumOfEntries: u32,
|
3129
|
-
pub dot11RegDomainValue: [DOT11_REG_DOMAIN_VALUE; 1],
|
3130
|
-
}
|
3131
|
-
#[repr(C)]
|
3132
|
-
#[derive(Clone, Copy)]
|
3133
|
-
pub struct DOT11_REG_DOMAIN_VALUE {
|
3134
|
-
pub uRegDomainsSupportIndex: u32,
|
3135
|
-
pub uRegDomainsSupportValue: u32,
|
3136
|
-
}
|
3137
|
-
#[repr(C)]
|
3138
|
-
#[derive(Clone, Copy)]
|
3139
|
-
pub struct DOT11_RESET_REQUEST {
|
3140
|
-
pub dot11ResetType: DOT11_RESET_TYPE,
|
3141
|
-
pub dot11MacAddress: [u8; 6],
|
3142
|
-
pub bSetDefaultMIB: super::super::Foundation::BOOLEAN,
|
3143
|
-
}
|
3144
|
-
#[repr(C)]
|
3145
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3146
|
-
#[derive(Clone, Copy)]
|
3147
|
-
pub struct DOT11_ROAMING_COMPLETION_PARAMETERS {
|
3148
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3149
|
-
pub uStatus: u32,
|
3150
|
-
}
|
3151
|
-
#[repr(C)]
|
3152
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3153
|
-
#[derive(Clone, Copy)]
|
3154
|
-
pub struct DOT11_ROAMING_START_PARAMETERS {
|
3155
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3156
|
-
pub AdhocBSSID: [u8; 6],
|
3157
|
-
pub AdhocSSID: DOT11_SSID,
|
3158
|
-
pub uRoamingReason: u32,
|
3159
|
-
}
|
3160
|
-
#[repr(C)]
|
3161
|
-
#[derive(Clone, Copy)]
|
3162
|
-
pub struct DOT11_RSSI_RANGE {
|
3163
|
-
pub dot11PhyType: DOT11_PHY_TYPE,
|
3164
|
-
pub uRSSIMin: u32,
|
3165
|
-
pub uRSSIMax: u32,
|
3166
|
-
}
|
3167
|
-
#[repr(C)]
|
3168
|
-
#[derive(Clone, Copy)]
|
3169
|
-
pub struct DOT11_SCAN_REQUEST {
|
3170
|
-
pub dot11BSSType: DOT11_BSS_TYPE,
|
3171
|
-
pub dot11BSSID: [u8; 6],
|
3172
|
-
pub dot11SSID: DOT11_SSID,
|
3173
|
-
pub dot11ScanType: DOT11_SCAN_TYPE,
|
3174
|
-
pub bRestrictedScan: super::super::Foundation::BOOLEAN,
|
3175
|
-
pub bUseRequestIE: super::super::Foundation::BOOLEAN,
|
3176
|
-
pub uRequestIDsOffset: u32,
|
3177
|
-
pub uNumOfRequestIDs: u32,
|
3178
|
-
pub uPhyTypesOffset: u32,
|
3179
|
-
pub uNumOfPhyTypes: u32,
|
3180
|
-
pub uIEsOffset: u32,
|
3181
|
-
pub uIEsLength: u32,
|
3182
|
-
pub ucBuffer: [u8; 1],
|
3183
|
-
}
|
3184
|
-
#[repr(C)]
|
3185
|
-
#[derive(Clone, Copy)]
|
3186
|
-
pub struct DOT11_SCAN_REQUEST_V2 {
|
3187
|
-
pub dot11BSSType: DOT11_BSS_TYPE,
|
3188
|
-
pub dot11BSSID: [u8; 6],
|
3189
|
-
pub dot11ScanType: DOT11_SCAN_TYPE,
|
3190
|
-
pub bRestrictedScan: super::super::Foundation::BOOLEAN,
|
3191
|
-
pub udot11SSIDsOffset: u32,
|
3192
|
-
pub uNumOfdot11SSIDs: u32,
|
3193
|
-
pub bUseRequestIE: super::super::Foundation::BOOLEAN,
|
3194
|
-
pub uRequestIDsOffset: u32,
|
3195
|
-
pub uNumOfRequestIDs: u32,
|
3196
|
-
pub uPhyTypeInfosOffset: u32,
|
3197
|
-
pub uNumOfPhyTypeInfos: u32,
|
3198
|
-
pub uIEsOffset: u32,
|
3199
|
-
pub uIEsLength: u32,
|
3200
|
-
pub ucBuffer: [u8; 1],
|
3201
|
-
}
|
3202
|
-
#[repr(C, packed(1))]
|
3203
|
-
#[derive(Clone, Copy)]
|
3204
|
-
pub struct DOT11_SECURITY_PACKET_HEADER {
|
3205
|
-
pub PeerMac: [u8; 6],
|
3206
|
-
pub usEtherType: u16,
|
3207
|
-
pub Data: [u8; 1],
|
3208
|
-
}
|
3209
|
-
#[repr(C)]
|
3210
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3211
|
-
#[derive(Clone, Copy)]
|
3212
|
-
pub struct DOT11_SEND_GO_NEGOTIATION_CONFIRMATION_PARAMETERS {
|
3213
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3214
|
-
pub PeerDeviceAddress: [u8; 6],
|
3215
|
-
pub DialogToken: u8,
|
3216
|
-
pub ResponseContext: *mut core::ffi::c_void,
|
3217
|
-
pub uSendTimeout: u32,
|
3218
|
-
pub Status: u8,
|
3219
|
-
pub GroupCapability: u8,
|
3220
|
-
pub GroupID: DOT11_WFD_GROUP_ID,
|
3221
|
-
pub bUseGroupID: super::super::Foundation::BOOLEAN,
|
3222
|
-
pub uIEsOffset: u32,
|
3223
|
-
pub uIEsLength: u32,
|
3224
|
-
}
|
3225
|
-
#[repr(C)]
|
3226
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3227
|
-
#[derive(Clone, Copy)]
|
3228
|
-
pub struct DOT11_SEND_GO_NEGOTIATION_REQUEST_PARAMETERS {
|
3229
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3230
|
-
pub PeerDeviceAddress: [u8; 6],
|
3231
|
-
pub DialogToken: u8,
|
3232
|
-
pub uSendTimeout: u32,
|
3233
|
-
pub GroupOwnerIntent: DOT11_WFD_GO_INTENT,
|
3234
|
-
pub MinimumConfigTimeout: DOT11_WFD_CONFIGURATION_TIMEOUT,
|
3235
|
-
pub IntendedInterfaceAddress: [u8; 6],
|
3236
|
-
pub GroupCapability: u8,
|
3237
|
-
pub uIEsOffset: u32,
|
3238
|
-
pub uIEsLength: u32,
|
3239
|
-
}
|
3240
|
-
#[repr(C)]
|
3241
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3242
|
-
#[derive(Clone, Copy)]
|
3243
|
-
pub struct DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS {
|
3244
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3245
|
-
pub PeerDeviceAddress: [u8; 6],
|
3246
|
-
pub DialogToken: u8,
|
3247
|
-
pub RequestContext: *mut core::ffi::c_void,
|
3248
|
-
pub uSendTimeout: u32,
|
3249
|
-
pub Status: u8,
|
3250
|
-
pub GroupOwnerIntent: DOT11_WFD_GO_INTENT,
|
3251
|
-
pub MinimumConfigTimeout: DOT11_WFD_CONFIGURATION_TIMEOUT,
|
3252
|
-
pub IntendedInterfaceAddress: [u8; 6],
|
3253
|
-
pub GroupCapability: u8,
|
3254
|
-
pub GroupID: DOT11_WFD_GROUP_ID,
|
3255
|
-
pub bUseGroupID: super::super::Foundation::BOOLEAN,
|
3256
|
-
pub uIEsOffset: u32,
|
3257
|
-
pub uIEsLength: u32,
|
3258
|
-
}
|
3259
|
-
#[repr(C)]
|
3260
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3261
|
-
#[derive(Clone, Copy)]
|
3262
|
-
pub struct DOT11_SEND_INVITATION_REQUEST_PARAMETERS {
|
3263
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3264
|
-
pub DialogToken: u8,
|
3265
|
-
pub PeerDeviceAddress: [u8; 6],
|
3266
|
-
pub uSendTimeout: u32,
|
3267
|
-
pub MinimumConfigTimeout: DOT11_WFD_CONFIGURATION_TIMEOUT,
|
3268
|
-
pub InvitationFlags: DOT11_WFD_INVITATION_FLAGS,
|
3269
|
-
pub GroupBSSID: [u8; 6],
|
3270
|
-
pub bUseGroupBSSID: super::super::Foundation::BOOLEAN,
|
3271
|
-
pub OperatingChannel: DOT11_WFD_CHANNEL,
|
3272
|
-
pub bUseSpecifiedOperatingChannel: super::super::Foundation::BOOLEAN,
|
3273
|
-
pub GroupID: DOT11_WFD_GROUP_ID,
|
3274
|
-
pub bLocalGO: super::super::Foundation::BOOLEAN,
|
3275
|
-
pub uIEsOffset: u32,
|
3276
|
-
pub uIEsLength: u32,
|
3277
|
-
}
|
3278
|
-
#[repr(C)]
|
3279
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3280
|
-
#[derive(Clone, Copy)]
|
3281
|
-
pub struct DOT11_SEND_INVITATION_RESPONSE_PARAMETERS {
|
3282
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3283
|
-
pub ReceiverDeviceAddress: [u8; 6],
|
3284
|
-
pub DialogToken: u8,
|
3285
|
-
pub RequestContext: *mut core::ffi::c_void,
|
3286
|
-
pub uSendTimeout: u32,
|
3287
|
-
pub Status: u8,
|
3288
|
-
pub MinimumConfigTimeout: DOT11_WFD_CONFIGURATION_TIMEOUT,
|
3289
|
-
pub GroupBSSID: [u8; 6],
|
3290
|
-
pub bUseGroupBSSID: super::super::Foundation::BOOLEAN,
|
3291
|
-
pub OperatingChannel: DOT11_WFD_CHANNEL,
|
3292
|
-
pub bUseSpecifiedOperatingChannel: super::super::Foundation::BOOLEAN,
|
3293
|
-
pub uIEsOffset: u32,
|
3294
|
-
pub uIEsLength: u32,
|
3295
|
-
}
|
3296
|
-
#[repr(C)]
|
3297
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3298
|
-
#[derive(Clone, Copy)]
|
3299
|
-
pub struct DOT11_SEND_PROVISION_DISCOVERY_REQUEST_PARAMETERS {
|
3300
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3301
|
-
pub DialogToken: u8,
|
3302
|
-
pub PeerDeviceAddress: [u8; 6],
|
3303
|
-
pub uSendTimeout: u32,
|
3304
|
-
pub GroupCapability: u8,
|
3305
|
-
pub GroupID: DOT11_WFD_GROUP_ID,
|
3306
|
-
pub bUseGroupID: super::super::Foundation::BOOLEAN,
|
3307
|
-
pub uIEsOffset: u32,
|
3308
|
-
pub uIEsLength: u32,
|
3309
|
-
}
|
3310
|
-
#[repr(C)]
|
3311
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3312
|
-
#[derive(Clone, Copy)]
|
3313
|
-
pub struct DOT11_SEND_PROVISION_DISCOVERY_RESPONSE_PARAMETERS {
|
3314
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3315
|
-
pub ReceiverDeviceAddress: [u8; 6],
|
3316
|
-
pub DialogToken: u8,
|
3317
|
-
pub RequestContext: *mut core::ffi::c_void,
|
3318
|
-
pub uSendTimeout: u32,
|
3319
|
-
pub uIEsOffset: u32,
|
3320
|
-
pub uIEsLength: u32,
|
3321
|
-
}
|
3322
|
-
#[repr(C)]
|
3323
|
-
#[derive(Clone, Copy)]
|
3324
|
-
pub struct DOT11_SSID {
|
3325
|
-
pub uSSIDLength: u32,
|
3326
|
-
pub ucSSID: [u8; 32],
|
3327
|
-
}
|
3328
|
-
#[repr(C)]
|
3329
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3330
|
-
#[derive(Clone, Copy)]
|
3331
|
-
pub struct DOT11_SSID_LIST {
|
3332
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3333
|
-
pub uNumOfEntries: u32,
|
3334
|
-
pub uTotalNumOfEntries: u32,
|
3335
|
-
pub SSIDs: [DOT11_SSID; 1],
|
3336
|
-
}
|
3337
|
-
#[repr(C)]
|
3338
|
-
#[derive(Clone, Copy)]
|
3339
|
-
pub struct DOT11_START_REQUEST {
|
3340
|
-
pub uStartFailureTimeout: u32,
|
3341
|
-
pub OperationalRateSet: DOT11_RATE_SET,
|
3342
|
-
pub uChCenterFrequency: u32,
|
3343
|
-
pub dot11BSSDescription: DOT11_BSS_DESCRIPTION,
|
3344
|
-
}
|
3345
|
-
#[repr(C)]
|
3346
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3347
|
-
#[derive(Clone, Copy)]
|
3348
|
-
pub struct DOT11_STATISTICS {
|
3349
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3350
|
-
pub ullFourWayHandshakeFailures: u64,
|
3351
|
-
pub ullTKIPCounterMeasuresInvoked: u64,
|
3352
|
-
pub ullReserved: u64,
|
3353
|
-
pub MacUcastCounters: DOT11_MAC_FRAME_STATISTICS,
|
3354
|
-
pub MacMcastCounters: DOT11_MAC_FRAME_STATISTICS,
|
3355
|
-
pub PhyCounters: [DOT11_PHY_FRAME_STATISTICS; 1],
|
3356
|
-
}
|
3357
|
-
#[repr(C)]
|
3358
|
-
#[derive(Clone, Copy)]
|
3359
|
-
pub struct DOT11_STATUS_INDICATION {
|
3360
|
-
pub uStatusType: u32,
|
3361
|
-
pub ndisStatus: i32,
|
3362
|
-
}
|
3363
|
-
#[repr(C)]
|
3364
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3365
|
-
#[derive(Clone, Copy)]
|
3366
|
-
pub struct DOT11_STOP_AP_PARAMETERS {
|
3367
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3368
|
-
pub ulReason: u32,
|
3369
|
-
}
|
3370
|
-
#[repr(C)]
|
3371
|
-
#[derive(Clone, Copy)]
|
3372
|
-
pub struct DOT11_SUPPORTED_ANTENNA {
|
3373
|
-
pub uAntennaListIndex: u32,
|
3374
|
-
pub bSupportedAntenna: super::super::Foundation::BOOLEAN,
|
3375
|
-
}
|
3376
|
-
#[repr(C)]
|
3377
|
-
#[derive(Clone, Copy)]
|
3378
|
-
pub struct DOT11_SUPPORTED_ANTENNA_LIST {
|
3379
|
-
pub uNumOfEntries: u32,
|
3380
|
-
pub uTotalNumOfEntries: u32,
|
3381
|
-
pub dot11SupportedAntenna: [DOT11_SUPPORTED_ANTENNA; 1],
|
3382
|
-
}
|
3383
|
-
#[repr(C)]
|
3384
|
-
#[derive(Clone, Copy)]
|
3385
|
-
pub struct DOT11_SUPPORTED_DATA_RATES_VALUE {
|
3386
|
-
pub ucSupportedTxDataRatesValue: [u8; 8],
|
3387
|
-
pub ucSupportedRxDataRatesValue: [u8; 8],
|
3388
|
-
}
|
3389
|
-
#[repr(C)]
|
3390
|
-
#[derive(Clone, Copy)]
|
3391
|
-
pub struct DOT11_SUPPORTED_DATA_RATES_VALUE_V2 {
|
3392
|
-
pub ucSupportedTxDataRatesValue: [u8; 255],
|
3393
|
-
pub ucSupportedRxDataRatesValue: [u8; 255],
|
3394
|
-
}
|
3395
|
-
#[repr(C)]
|
3396
|
-
#[derive(Clone, Copy)]
|
3397
|
-
pub struct DOT11_SUPPORTED_DSSS_CHANNEL {
|
3398
|
-
pub uChannel: u32,
|
3399
|
-
}
|
3400
|
-
#[repr(C)]
|
3401
|
-
#[derive(Clone, Copy)]
|
3402
|
-
pub struct DOT11_SUPPORTED_DSSS_CHANNEL_LIST {
|
3403
|
-
pub uNumOfEntries: u32,
|
3404
|
-
pub uTotalNumOfEntries: u32,
|
3405
|
-
pub dot11SupportedDSSSChannel: [DOT11_SUPPORTED_DSSS_CHANNEL; 1],
|
3406
|
-
}
|
3407
|
-
#[repr(C)]
|
3408
|
-
#[derive(Clone, Copy)]
|
3409
|
-
pub struct DOT11_SUPPORTED_OFDM_FREQUENCY {
|
3410
|
-
pub uCenterFrequency: u32,
|
3411
|
-
}
|
3412
|
-
#[repr(C)]
|
3413
|
-
#[derive(Clone, Copy)]
|
3414
|
-
pub struct DOT11_SUPPORTED_OFDM_FREQUENCY_LIST {
|
3415
|
-
pub uNumOfEntries: u32,
|
3416
|
-
pub uTotalNumOfEntries: u32,
|
3417
|
-
pub dot11SupportedOFDMFrequency: [DOT11_SUPPORTED_OFDM_FREQUENCY; 1],
|
3418
|
-
}
|
3419
|
-
#[repr(C)]
|
3420
|
-
#[derive(Clone, Copy)]
|
3421
|
-
pub struct DOT11_SUPPORTED_PHY_TYPES {
|
3422
|
-
pub uNumOfEntries: u32,
|
3423
|
-
pub uTotalNumOfEntries: u32,
|
3424
|
-
pub dot11PHYType: [DOT11_PHY_TYPE; 1],
|
3425
|
-
}
|
3426
|
-
#[repr(C)]
|
3427
|
-
#[derive(Clone, Copy)]
|
3428
|
-
pub struct DOT11_SUPPORTED_POWER_LEVELS {
|
3429
|
-
pub uNumOfSupportedPowerLevels: u32,
|
3430
|
-
pub uTxPowerLevelValues: [u32; 8],
|
3431
|
-
}
|
3432
|
-
#[repr(C)]
|
3433
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3434
|
-
#[derive(Clone, Copy)]
|
3435
|
-
pub struct DOT11_TKIPMIC_FAILURE_PARAMETERS {
|
3436
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3437
|
-
pub bDefaultKeyFailure: super::super::Foundation::BOOLEAN,
|
3438
|
-
pub uKeyIndex: u32,
|
3439
|
-
pub PeerMac: [u8; 6],
|
3440
|
-
}
|
3441
|
-
#[repr(C)]
|
3442
|
-
#[derive(Clone, Copy)]
|
3443
|
-
pub struct DOT11_UPDATE_IE {
|
3444
|
-
pub dot11UpdateIEOp: DOT11_UPDATE_IE_OP,
|
3445
|
-
pub uBufferLength: u32,
|
3446
|
-
pub ucBuffer: [u8; 1],
|
3447
|
-
}
|
3448
|
-
#[repr(C)]
|
3449
|
-
#[derive(Clone, Copy)]
|
3450
|
-
pub struct DOT11_VENUEINFO {
|
3451
|
-
pub VenueGroup: u8,
|
3452
|
-
pub VenueType: u8,
|
3453
|
-
}
|
3454
|
-
#[repr(C)]
|
3455
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3456
|
-
#[derive(Clone, Copy)]
|
3457
|
-
pub struct DOT11_VWIFI_ATTRIBUTES {
|
3458
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3459
|
-
pub uTotalNumOfEntries: u32,
|
3460
|
-
pub Combinations: [DOT11_VWIFI_COMBINATION; 1],
|
3461
|
-
}
|
3462
|
-
#[repr(C)]
|
3463
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3464
|
-
#[derive(Clone, Copy)]
|
3465
|
-
pub struct DOT11_VWIFI_COMBINATION {
|
3466
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3467
|
-
pub uNumInfrastructure: u32,
|
3468
|
-
pub uNumAdhoc: u32,
|
3469
|
-
pub uNumSoftAP: u32,
|
3470
|
-
}
|
3471
|
-
#[repr(C)]
|
3472
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3473
|
-
#[derive(Clone, Copy)]
|
3474
|
-
pub struct DOT11_VWIFI_COMBINATION_V2 {
|
3475
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3476
|
-
pub uNumInfrastructure: u32,
|
3477
|
-
pub uNumAdhoc: u32,
|
3478
|
-
pub uNumSoftAP: u32,
|
3479
|
-
pub uNumVirtualStation: u32,
|
3480
|
-
}
|
3481
|
-
#[repr(C)]
|
3482
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3483
|
-
#[derive(Clone, Copy)]
|
3484
|
-
pub struct DOT11_VWIFI_COMBINATION_V3 {
|
3485
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3486
|
-
pub uNumInfrastructure: u32,
|
3487
|
-
pub uNumAdhoc: u32,
|
3488
|
-
pub uNumSoftAP: u32,
|
3489
|
-
pub uNumVirtualStation: u32,
|
3490
|
-
pub uNumWFDGroup: u32,
|
3491
|
-
}
|
3492
|
-
#[repr(C)]
|
3493
|
-
#[derive(Clone, Copy)]
|
3494
|
-
pub struct DOT11_WEP_OFFLOAD {
|
3495
|
-
pub uReserved: u32,
|
3496
|
-
pub hOffloadContext: super::super::Foundation::HANDLE,
|
3497
|
-
pub hOffload: super::super::Foundation::HANDLE,
|
3498
|
-
pub dot11OffloadType: DOT11_OFFLOAD_TYPE,
|
3499
|
-
pub dwAlgorithm: u32,
|
3500
|
-
pub bRowIsOutbound: super::super::Foundation::BOOLEAN,
|
3501
|
-
pub bUseDefault: super::super::Foundation::BOOLEAN,
|
3502
|
-
pub uFlags: u32,
|
3503
|
-
pub ucMacAddress: [u8; 6],
|
3504
|
-
pub uNumOfRWsOnPeer: u32,
|
3505
|
-
pub uNumOfRWsOnMe: u32,
|
3506
|
-
pub dot11IV48Counters: [DOT11_IV48_COUNTER; 16],
|
3507
|
-
pub usDot11RWBitMaps: [u16; 16],
|
3508
|
-
pub usKeyLength: u16,
|
3509
|
-
pub ucKey: [u8; 1],
|
3510
|
-
}
|
3511
|
-
#[repr(C)]
|
3512
|
-
#[derive(Clone, Copy)]
|
3513
|
-
pub struct DOT11_WEP_UPLOAD {
|
3514
|
-
pub uReserved: u32,
|
3515
|
-
pub dot11OffloadType: DOT11_OFFLOAD_TYPE,
|
3516
|
-
pub hOffload: super::super::Foundation::HANDLE,
|
3517
|
-
pub uNumOfRWsUsed: u32,
|
3518
|
-
pub dot11IV48Counters: [DOT11_IV48_COUNTER; 16],
|
3519
|
-
pub usDot11RWBitMaps: [u16; 16],
|
3520
|
-
}
|
3521
|
-
#[repr(C)]
|
3522
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3523
|
-
#[derive(Clone, Copy)]
|
3524
|
-
pub struct DOT11_WFD_ADDITIONAL_IE {
|
3525
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3526
|
-
pub uBeaconIEsOffset: u32,
|
3527
|
-
pub uBeaconIEsLength: u32,
|
3528
|
-
pub uProbeResponseIEsOffset: u32,
|
3529
|
-
pub uProbeResponseIEsLength: u32,
|
3530
|
-
pub uDefaultRequestIEsOffset: u32,
|
3531
|
-
pub uDefaultRequestIEsLength: u32,
|
3532
|
-
}
|
3533
|
-
#[repr(C)]
|
3534
|
-
#[derive(Clone, Copy)]
|
3535
|
-
pub struct DOT11_WFD_ADVERTISED_SERVICE_DESCRIPTOR {
|
3536
|
-
pub AdvertisementID: u32,
|
3537
|
-
pub ConfigMethods: u16,
|
3538
|
-
pub ServiceNameLength: u8,
|
3539
|
-
pub ServiceName: [u8; 255],
|
3540
|
-
}
|
3541
|
-
#[repr(C)]
|
3542
|
-
#[derive(Clone, Copy)]
|
3543
|
-
pub struct DOT11_WFD_ADVERTISED_SERVICE_LIST {
|
3544
|
-
pub ServiceCount: u16,
|
3545
|
-
pub AdvertisedService: [DOT11_WFD_ADVERTISED_SERVICE_DESCRIPTOR; 1],
|
3546
|
-
}
|
3547
|
-
#[repr(C)]
|
3548
|
-
#[derive(Clone, Copy)]
|
3549
|
-
pub struct DOT11_WFD_ADVERTISEMENT_ID {
|
3550
|
-
pub AdvertisementID: u32,
|
3551
|
-
pub ServiceAddress: [u8; 6],
|
3552
|
-
}
|
3553
|
-
#[repr(C)]
|
3554
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3555
|
-
#[derive(Clone, Copy)]
|
3556
|
-
pub struct DOT11_WFD_ATTRIBUTES {
|
3557
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3558
|
-
pub uNumConcurrentGORole: u32,
|
3559
|
-
pub uNumConcurrentClientRole: u32,
|
3560
|
-
pub WPSVersionsSupported: u32,
|
3561
|
-
pub bServiceDiscoverySupported: super::super::Foundation::BOOLEAN,
|
3562
|
-
pub bClientDiscoverabilitySupported: super::super::Foundation::BOOLEAN,
|
3563
|
-
pub bInfrastructureManagementSupported: super::super::Foundation::BOOLEAN,
|
3564
|
-
pub uMaxSecondaryDeviceTypeListSize: u32,
|
3565
|
-
pub DeviceAddress: [u8; 6],
|
3566
|
-
pub uInterfaceAddressListCount: u32,
|
3567
|
-
pub pInterfaceAddressList: *mut u8,
|
3568
|
-
pub uNumSupportedCountryOrRegionStrings: u32,
|
3569
|
-
pub pSupportedCountryOrRegionStrings: *mut u8,
|
3570
|
-
pub uDiscoveryFilterListSize: u32,
|
3571
|
-
pub uGORoleClientTableSize: u32,
|
3572
|
-
}
|
3573
|
-
#[repr(C)]
|
3574
|
-
#[derive(Clone, Copy)]
|
3575
|
-
pub struct DOT11_WFD_CHANNEL {
|
3576
|
-
pub CountryRegionString: [u8; 3],
|
3577
|
-
pub OperatingClass: u8,
|
3578
|
-
pub ChannelNumber: u8,
|
3579
|
-
}
|
3580
|
-
#[repr(C)]
|
3581
|
-
#[derive(Clone, Copy)]
|
3582
|
-
pub struct DOT11_WFD_CONFIGURATION_TIMEOUT {
|
3583
|
-
pub GOTimeout: u8,
|
3584
|
-
pub ClientTimeout: u8,
|
3585
|
-
}
|
3586
|
-
#[repr(C)]
|
3587
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3588
|
-
#[derive(Clone, Copy)]
|
3589
|
-
pub struct DOT11_WFD_DEVICE_CAPABILITY_CONFIG {
|
3590
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3591
|
-
pub bServiceDiscoveryEnabled: super::super::Foundation::BOOLEAN,
|
3592
|
-
pub bClientDiscoverabilityEnabled: super::super::Foundation::BOOLEAN,
|
3593
|
-
pub bConcurrentOperationSupported: super::super::Foundation::BOOLEAN,
|
3594
|
-
pub bInfrastructureManagementEnabled: super::super::Foundation::BOOLEAN,
|
3595
|
-
pub bDeviceLimitReached: super::super::Foundation::BOOLEAN,
|
3596
|
-
pub bInvitationProcedureEnabled: super::super::Foundation::BOOLEAN,
|
3597
|
-
pub WPSVersionsEnabled: u32,
|
3598
|
-
}
|
3599
|
-
#[repr(C)]
|
3600
|
-
#[derive(Clone, Copy)]
|
3601
|
-
pub struct DOT11_WFD_DEVICE_ENTRY {
|
3602
|
-
pub uPhyId: u32,
|
3603
|
-
pub PhySpecificInfo: DOT11_BSS_ENTRY_PHY_SPECIFIC_INFO,
|
3604
|
-
pub dot11BSSID: [u8; 6],
|
3605
|
-
pub dot11BSSType: DOT11_BSS_TYPE,
|
3606
|
-
pub TransmitterAddress: [u8; 6],
|
3607
|
-
pub lRSSI: i32,
|
3608
|
-
pub uLinkQuality: u32,
|
3609
|
-
pub usBeaconPeriod: u16,
|
3610
|
-
pub ullTimestamp: u64,
|
3611
|
-
pub ullBeaconHostTimestamp: u64,
|
3612
|
-
pub ullProbeResponseHostTimestamp: u64,
|
3613
|
-
pub usCapabilityInformation: u16,
|
3614
|
-
pub uBeaconIEsOffset: u32,
|
3615
|
-
pub uBeaconIEsLength: u32,
|
3616
|
-
pub uProbeResponseIEsOffset: u32,
|
3617
|
-
pub uProbeResponseIEsLength: u32,
|
3618
|
-
}
|
3619
|
-
#[repr(C)]
|
3620
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3621
|
-
#[derive(Clone, Copy)]
|
3622
|
-
pub struct DOT11_WFD_DEVICE_INFO {
|
3623
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3624
|
-
pub DeviceAddress: [u8; 6],
|
3625
|
-
pub ConfigMethods: u16,
|
3626
|
-
pub PrimaryDeviceType: DOT11_WFD_DEVICE_TYPE,
|
3627
|
-
pub DeviceName: DOT11_WPS_DEVICE_NAME,
|
3628
|
-
}
|
3629
|
-
#[repr(C)]
|
3630
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3631
|
-
#[derive(Clone, Copy)]
|
3632
|
-
pub struct DOT11_WFD_DEVICE_LISTEN_CHANNEL {
|
3633
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3634
|
-
pub ChannelNumber: u8,
|
3635
|
-
}
|
3636
|
-
#[repr(C)]
|
3637
|
-
#[derive(Clone, Copy)]
|
3638
|
-
pub struct DOT11_WFD_DEVICE_TYPE {
|
3639
|
-
pub CategoryID: u16,
|
3640
|
-
pub SubCategoryID: u16,
|
3641
|
-
pub OUI: [u8; 4],
|
3642
|
-
}
|
3643
|
-
#[repr(C)]
|
3644
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3645
|
-
#[derive(Clone, Copy)]
|
3646
|
-
pub struct DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS {
|
3647
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3648
|
-
pub Status: i32,
|
3649
|
-
pub uNumOfEntries: u32,
|
3650
|
-
pub uTotalNumOfEntries: u32,
|
3651
|
-
pub uListOffset: u32,
|
3652
|
-
pub uListLength: u32,
|
3653
|
-
}
|
3654
|
-
#[repr(C)]
|
3655
|
-
#[derive(Clone, Copy)]
|
3656
|
-
pub struct DOT11_WFD_DISCOVER_DEVICE_FILTER {
|
3657
|
-
pub DeviceID: [u8; 6],
|
3658
|
-
pub ucBitmask: u8,
|
3659
|
-
pub GroupSSID: DOT11_SSID,
|
3660
|
-
}
|
3661
|
-
#[repr(C)]
|
3662
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3663
|
-
#[derive(Clone, Copy)]
|
3664
|
-
pub struct DOT11_WFD_DISCOVER_REQUEST {
|
3665
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3666
|
-
pub DiscoverType: DOT11_WFD_DISCOVER_TYPE,
|
3667
|
-
pub ScanType: DOT11_WFD_SCAN_TYPE,
|
3668
|
-
pub uDiscoverTimeout: u32,
|
3669
|
-
pub uDeviceFilterListOffset: u32,
|
3670
|
-
pub uNumDeviceFilters: u32,
|
3671
|
-
pub uIEsOffset: u32,
|
3672
|
-
pub uIEsLength: u32,
|
3673
|
-
pub bForceScanLegacyNetworks: super::super::Foundation::BOOLEAN,
|
3674
|
-
}
|
3675
|
-
#[repr(C)]
|
3676
|
-
#[derive(Clone, Copy)]
|
3677
|
-
pub struct DOT11_WFD_GO_INTENT {
|
3678
|
-
pub _bitfield: u8,
|
3679
|
-
}
|
3680
|
-
#[repr(C)]
|
3681
|
-
#[derive(Clone, Copy)]
|
3682
|
-
pub struct DOT11_WFD_GROUP_ID {
|
3683
|
-
pub DeviceAddress: [u8; 6],
|
3684
|
-
pub SSID: DOT11_SSID,
|
3685
|
-
}
|
3686
|
-
#[repr(C)]
|
3687
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3688
|
-
#[derive(Clone, Copy)]
|
3689
|
-
pub struct DOT11_WFD_GROUP_JOIN_PARAMETERS {
|
3690
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3691
|
-
pub GOOperatingChannel: DOT11_WFD_CHANNEL,
|
3692
|
-
pub GOConfigTime: u32,
|
3693
|
-
pub bInGroupFormation: super::super::Foundation::BOOLEAN,
|
3694
|
-
pub bWaitForWPSReady: super::super::Foundation::BOOLEAN,
|
3695
|
-
}
|
3696
|
-
#[repr(C)]
|
3697
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3698
|
-
#[derive(Clone, Copy)]
|
3699
|
-
pub struct DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG {
|
3700
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3701
|
-
pub bPersistentGroupEnabled: super::super::Foundation::BOOLEAN,
|
3702
|
-
pub bIntraBSSDistributionSupported: super::super::Foundation::BOOLEAN,
|
3703
|
-
pub bCrossConnectionSupported: super::super::Foundation::BOOLEAN,
|
3704
|
-
pub bPersistentReconnectSupported: super::super::Foundation::BOOLEAN,
|
3705
|
-
pub bGroupFormationEnabled: super::super::Foundation::BOOLEAN,
|
3706
|
-
pub uMaximumGroupLimit: u32,
|
3707
|
-
}
|
3708
|
-
#[repr(C)]
|
3709
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3710
|
-
#[derive(Clone, Copy)]
|
3711
|
-
pub struct DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_V2 {
|
3712
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3713
|
-
pub bPersistentGroupEnabled: super::super::Foundation::BOOLEAN,
|
3714
|
-
pub bIntraBSSDistributionSupported: super::super::Foundation::BOOLEAN,
|
3715
|
-
pub bCrossConnectionSupported: super::super::Foundation::BOOLEAN,
|
3716
|
-
pub bPersistentReconnectSupported: super::super::Foundation::BOOLEAN,
|
3717
|
-
pub bGroupFormationEnabled: super::super::Foundation::BOOLEAN,
|
3718
|
-
pub uMaximumGroupLimit: u32,
|
3719
|
-
pub bEapolKeyIpAddressAllocationSupported: super::super::Foundation::BOOLEAN,
|
3720
|
-
}
|
3721
|
-
#[repr(C)]
|
3722
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3723
|
-
#[derive(Clone, Copy)]
|
3724
|
-
pub struct DOT11_WFD_GROUP_START_PARAMETERS {
|
3725
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3726
|
-
pub AdvertisedOperatingChannel: DOT11_WFD_CHANNEL,
|
3727
|
-
}
|
3728
|
-
#[repr(C)]
|
3729
|
-
#[derive(Clone, Copy)]
|
3730
|
-
pub struct DOT11_WFD_INVITATION_FLAGS {
|
3731
|
-
pub _bitfield: u8,
|
3732
|
-
}
|
3733
|
-
#[repr(C)]
|
3734
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
3735
|
-
#[derive(Clone, Copy)]
|
3736
|
-
pub struct DOT11_WFD_SECONDARY_DEVICE_TYPE_LIST {
|
3737
|
-
pub Header: super::Ndis::NDIS_OBJECT_HEADER,
|
3738
|
-
pub uNumOfEntries: u32,
|
3739
|
-
pub uTotalNumOfEntries: u32,
|
3740
|
-
pub SecondaryDeviceTypes: [DOT11_WFD_DEVICE_TYPE; 1],
|
3741
|
-
}
|
3742
|
-
#[repr(C)]
|
3743
|
-
#[derive(Clone, Copy)]
|
3744
|
-
pub struct DOT11_WFD_SERVICE_HASH_LIST {
|
3745
|
-
pub ServiceHashCount: u16,
|
3746
|
-
pub ServiceHash: [u8; 6],
|
3747
|
-
}
|
3748
|
-
#[repr(C)]
|
3749
|
-
#[derive(Clone, Copy)]
|
3750
|
-
pub struct DOT11_WFD_SESSION_ID {
|
3751
|
-
pub SessionID: u32,
|
3752
|
-
pub SessionAddress: [u8; 6],
|
3753
|
-
}
|
3754
|
-
#[repr(C)]
|
3755
|
-
#[derive(Clone, Copy)]
|
3756
|
-
pub struct DOT11_WFD_SESSION_INFO {
|
3757
|
-
pub uSessionInfoLength: u16,
|
3758
|
-
pub ucSessionInfo: [u8; 144],
|
3759
|
-
}
|
3760
|
-
#[repr(C)]
|
3761
|
-
#[derive(Clone, Copy)]
|
3762
|
-
pub struct DOT11_WME_AC_PARAMETERS {
|
3763
|
-
pub ucAccessCategoryIndex: u8,
|
3764
|
-
pub ucAIFSN: u8,
|
3765
|
-
pub ucECWmin: u8,
|
3766
|
-
pub ucECWmax: u8,
|
3767
|
-
pub usTXOPLimit: u16,
|
3768
|
-
}
|
3769
|
-
#[repr(C)]
|
3770
|
-
#[derive(Clone, Copy)]
|
3771
|
-
pub struct DOT11_WME_AC_PARAMETERS_LIST {
|
3772
|
-
pub uNumOfEntries: u32,
|
3773
|
-
pub uTotalNumOfEntries: u32,
|
3774
|
-
pub dot11WMEACParameters: [DOT11_WME_AC_PARAMETERS; 1],
|
3775
|
-
}
|
3776
|
-
#[repr(C)]
|
3777
|
-
#[derive(Clone, Copy)]
|
3778
|
-
pub struct DOT11_WME_UPDATE_IE {
|
3779
|
-
pub uParamElemMinBeaconIntervals: u32,
|
3780
|
-
pub uWMEInfoElemOffset: u32,
|
3781
|
-
pub uWMEInfoElemLength: u32,
|
3782
|
-
pub uWMEParamElemOffset: u32,
|
3783
|
-
pub uWMEParamElemLength: u32,
|
3784
|
-
pub ucBuffer: [u8; 1],
|
3785
|
-
}
|
3786
|
-
#[repr(C)]
|
3787
|
-
#[derive(Clone, Copy)]
|
3788
|
-
pub struct DOT11_WPA_TSC {
|
3789
|
-
pub uReserved: u32,
|
3790
|
-
pub dot11OffloadType: DOT11_OFFLOAD_TYPE,
|
3791
|
-
pub hOffload: super::super::Foundation::HANDLE,
|
3792
|
-
pub dot11IV48Counter: DOT11_IV48_COUNTER,
|
3793
|
-
}
|
3794
|
-
#[repr(C)]
|
3795
|
-
#[derive(Clone, Copy)]
|
3796
|
-
pub struct DOT11_WPS_DEVICE_NAME {
|
3797
|
-
pub uDeviceNameLength: u32,
|
3798
|
-
pub ucDeviceName: [u8; 32],
|
3799
|
-
}
|
3800
|
-
pub const Dot11AdHocManager: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xdd06a84f_83bd_4d01_8ab9_2389fea0869e);
|
3801
|
-
#[repr(C)]
|
3802
|
-
#[derive(Clone, Copy)]
|
3803
|
-
pub struct L2_NOTIFICATION_DATA {
|
3804
|
-
pub NotificationSource: WLAN_NOTIFICATION_SOURCES,
|
3805
|
-
pub NotificationCode: u32,
|
3806
|
-
pub InterfaceGuid: windows_sys::core::GUID,
|
3807
|
-
pub dwDataSize: u32,
|
3808
|
-
pub pData: *mut core::ffi::c_void,
|
3809
|
-
}
|
3810
|
-
#[repr(C)]
|
3811
|
-
#[derive(Clone, Copy)]
|
3812
|
-
pub struct ONEX_AUTH_PARAMS {
|
3813
|
-
pub fUpdatePending: super::super::Foundation::BOOL,
|
3814
|
-
pub oneXConnProfile: ONEX_VARIABLE_BLOB,
|
3815
|
-
pub authIdentity: ONEX_AUTH_IDENTITY,
|
3816
|
-
pub dwQuarantineState: u32,
|
3817
|
-
pub _bitfield: u32,
|
3818
|
-
pub dwSessionId: u32,
|
3819
|
-
pub hUserToken: super::super::Foundation::HANDLE,
|
3820
|
-
pub OneXUserProfile: ONEX_VARIABLE_BLOB,
|
3821
|
-
pub Identity: ONEX_VARIABLE_BLOB,
|
3822
|
-
pub UserName: ONEX_VARIABLE_BLOB,
|
3823
|
-
pub Domain: ONEX_VARIABLE_BLOB,
|
3824
|
-
}
|
3825
|
-
#[repr(C)]
|
3826
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
3827
|
-
#[derive(Clone, Copy)]
|
3828
|
-
pub struct ONEX_EAP_ERROR {
|
3829
|
-
pub dwWinError: u32,
|
3830
|
-
pub r#type: super::super::Security::ExtensibleAuthenticationProtocol::EAP_METHOD_TYPE,
|
3831
|
-
pub dwReasonCode: u32,
|
3832
|
-
pub rootCauseGuid: windows_sys::core::GUID,
|
3833
|
-
pub repairGuid: windows_sys::core::GUID,
|
3834
|
-
pub helpLinkGuid: windows_sys::core::GUID,
|
3835
|
-
pub _bitfield: u32,
|
3836
|
-
pub RootCauseString: ONEX_VARIABLE_BLOB,
|
3837
|
-
pub RepairString: ONEX_VARIABLE_BLOB,
|
3838
|
-
}
|
3839
|
-
#[repr(C)]
|
3840
|
-
#[derive(Clone, Copy)]
|
3841
|
-
pub struct ONEX_RESULT_UPDATE_DATA {
|
3842
|
-
pub oneXStatus: ONEX_STATUS,
|
3843
|
-
pub BackendSupport: ONEX_EAP_METHOD_BACKEND_SUPPORT,
|
3844
|
-
pub fBackendEngaged: super::super::Foundation::BOOL,
|
3845
|
-
pub _bitfield: u32,
|
3846
|
-
pub authParams: ONEX_VARIABLE_BLOB,
|
3847
|
-
pub eapError: ONEX_VARIABLE_BLOB,
|
3848
|
-
}
|
3849
|
-
#[repr(C)]
|
3850
|
-
#[derive(Clone, Copy)]
|
3851
|
-
pub struct ONEX_STATUS {
|
3852
|
-
pub authStatus: ONEX_AUTH_STATUS,
|
3853
|
-
pub dwReason: u32,
|
3854
|
-
pub dwError: u32,
|
3855
|
-
}
|
3856
|
-
#[repr(C)]
|
3857
|
-
#[derive(Clone, Copy)]
|
3858
|
-
pub struct ONEX_USER_INFO {
|
3859
|
-
pub authIdentity: ONEX_AUTH_IDENTITY,
|
3860
|
-
pub _bitfield: u32,
|
3861
|
-
pub UserName: ONEX_VARIABLE_BLOB,
|
3862
|
-
pub DomainName: ONEX_VARIABLE_BLOB,
|
3863
|
-
}
|
3864
|
-
#[repr(C)]
|
3865
|
-
#[derive(Clone, Copy)]
|
3866
|
-
pub struct ONEX_VARIABLE_BLOB {
|
3867
|
-
pub dwSize: u32,
|
3868
|
-
pub dwOffset: u32,
|
3869
|
-
}
|
3870
|
-
#[repr(C)]
|
3871
|
-
#[derive(Clone, Copy)]
|
3872
|
-
pub struct WDIAG_IHV_WLAN_ID {
|
3873
|
-
pub strProfileName: [u16; 256],
|
3874
|
-
pub Ssid: DOT11_SSID,
|
3875
|
-
pub BssType: DOT11_BSS_TYPE,
|
3876
|
-
pub dwFlags: u32,
|
3877
|
-
pub dwReasonCode: u32,
|
3878
|
-
}
|
3879
|
-
#[repr(C)]
|
3880
|
-
#[derive(Clone, Copy)]
|
3881
|
-
pub struct WFDSVC_CONNECTION_CAPABILITY {
|
3882
|
-
pub bNew: super::super::Foundation::BOOLEAN,
|
3883
|
-
pub bClient: super::super::Foundation::BOOLEAN,
|
3884
|
-
pub bGO: super::super::Foundation::BOOLEAN,
|
3885
|
-
}
|
3886
|
-
#[repr(C)]
|
3887
|
-
#[derive(Clone, Copy)]
|
3888
|
-
pub struct WFD_GROUP_ID {
|
3889
|
-
pub DeviceAddress: [u8; 6],
|
3890
|
-
pub GroupSSID: DOT11_SSID,
|
3891
|
-
}
|
3892
|
-
#[repr(C)]
|
3893
|
-
#[derive(Clone, Copy)]
|
3894
|
-
pub struct WLAN_ASSOCIATION_ATTRIBUTES {
|
3895
|
-
pub dot11Ssid: DOT11_SSID,
|
3896
|
-
pub dot11BssType: DOT11_BSS_TYPE,
|
3897
|
-
pub dot11Bssid: [u8; 6],
|
3898
|
-
pub dot11PhyType: DOT11_PHY_TYPE,
|
3899
|
-
pub uDot11PhyIndex: u32,
|
3900
|
-
pub wlanSignalQuality: u32,
|
3901
|
-
pub ulRxRate: u32,
|
3902
|
-
pub ulTxRate: u32,
|
3903
|
-
}
|
3904
|
-
#[repr(C)]
|
3905
|
-
#[derive(Clone, Copy)]
|
3906
|
-
pub struct WLAN_AUTH_CIPHER_PAIR_LIST {
|
3907
|
-
pub dwNumberOfItems: u32,
|
3908
|
-
pub pAuthCipherPairList: [DOT11_AUTH_CIPHER_PAIR; 1],
|
3909
|
-
}
|
3910
|
-
#[repr(C)]
|
3911
|
-
#[derive(Clone, Copy)]
|
3912
|
-
pub struct WLAN_AVAILABLE_NETWORK {
|
3913
|
-
pub strProfileName: [u16; 256],
|
3914
|
-
pub dot11Ssid: DOT11_SSID,
|
3915
|
-
pub dot11BssType: DOT11_BSS_TYPE,
|
3916
|
-
pub uNumberOfBssids: u32,
|
3917
|
-
pub bNetworkConnectable: super::super::Foundation::BOOL,
|
3918
|
-
pub wlanNotConnectableReason: u32,
|
3919
|
-
pub uNumberOfPhyTypes: u32,
|
3920
|
-
pub dot11PhyTypes: [DOT11_PHY_TYPE; 8],
|
3921
|
-
pub bMorePhyTypes: super::super::Foundation::BOOL,
|
3922
|
-
pub wlanSignalQuality: u32,
|
3923
|
-
pub bSecurityEnabled: super::super::Foundation::BOOL,
|
3924
|
-
pub dot11DefaultAuthAlgorithm: DOT11_AUTH_ALGORITHM,
|
3925
|
-
pub dot11DefaultCipherAlgorithm: DOT11_CIPHER_ALGORITHM,
|
3926
|
-
pub dwFlags: u32,
|
3927
|
-
pub dwReserved: u32,
|
3928
|
-
}
|
3929
|
-
#[repr(C)]
|
3930
|
-
#[derive(Clone, Copy)]
|
3931
|
-
pub struct WLAN_AVAILABLE_NETWORK_LIST {
|
3932
|
-
pub dwNumberOfItems: u32,
|
3933
|
-
pub dwIndex: u32,
|
3934
|
-
pub Network: [WLAN_AVAILABLE_NETWORK; 1],
|
3935
|
-
}
|
3936
|
-
#[repr(C)]
|
3937
|
-
#[derive(Clone, Copy)]
|
3938
|
-
pub struct WLAN_AVAILABLE_NETWORK_LIST_V2 {
|
3939
|
-
pub dwNumberOfItems: u32,
|
3940
|
-
pub dwIndex: u32,
|
3941
|
-
pub Network: [WLAN_AVAILABLE_NETWORK_V2; 1],
|
3942
|
-
}
|
3943
|
-
#[repr(C)]
|
3944
|
-
#[derive(Clone, Copy)]
|
3945
|
-
pub struct WLAN_AVAILABLE_NETWORK_V2 {
|
3946
|
-
pub strProfileName: [u16; 256],
|
3947
|
-
pub dot11Ssid: DOT11_SSID,
|
3948
|
-
pub dot11BssType: DOT11_BSS_TYPE,
|
3949
|
-
pub uNumberOfBssids: u32,
|
3950
|
-
pub bNetworkConnectable: super::super::Foundation::BOOL,
|
3951
|
-
pub wlanNotConnectableReason: u32,
|
3952
|
-
pub uNumberOfPhyTypes: u32,
|
3953
|
-
pub dot11PhyTypes: [DOT11_PHY_TYPE; 8],
|
3954
|
-
pub bMorePhyTypes: super::super::Foundation::BOOL,
|
3955
|
-
pub wlanSignalQuality: u32,
|
3956
|
-
pub bSecurityEnabled: super::super::Foundation::BOOL,
|
3957
|
-
pub dot11DefaultAuthAlgorithm: DOT11_AUTH_ALGORITHM,
|
3958
|
-
pub dot11DefaultCipherAlgorithm: DOT11_CIPHER_ALGORITHM,
|
3959
|
-
pub dwFlags: u32,
|
3960
|
-
pub AccessNetworkOptions: DOT11_ACCESSNETWORKOPTIONS,
|
3961
|
-
pub dot11HESSID: [u8; 6],
|
3962
|
-
pub VenueInfo: DOT11_VENUEINFO,
|
3963
|
-
pub dwReserved: u32,
|
3964
|
-
}
|
3965
|
-
#[repr(C)]
|
3966
|
-
#[derive(Clone, Copy)]
|
3967
|
-
pub struct WLAN_BSS_ENTRY {
|
3968
|
-
pub dot11Ssid: DOT11_SSID,
|
3969
|
-
pub uPhyId: u32,
|
3970
|
-
pub dot11Bssid: [u8; 6],
|
3971
|
-
pub dot11BssType: DOT11_BSS_TYPE,
|
3972
|
-
pub dot11BssPhyType: DOT11_PHY_TYPE,
|
3973
|
-
pub lRssi: i32,
|
3974
|
-
pub uLinkQuality: u32,
|
3975
|
-
pub bInRegDomain: super::super::Foundation::BOOLEAN,
|
3976
|
-
pub usBeaconPeriod: u16,
|
3977
|
-
pub ullTimestamp: u64,
|
3978
|
-
pub ullHostTimestamp: u64,
|
3979
|
-
pub usCapabilityInformation: u16,
|
3980
|
-
pub ulChCenterFrequency: u32,
|
3981
|
-
pub wlanRateSet: WLAN_RATE_SET,
|
3982
|
-
pub ulIeOffset: u32,
|
3983
|
-
pub ulIeSize: u32,
|
3984
|
-
}
|
3985
|
-
#[repr(C)]
|
3986
|
-
#[derive(Clone, Copy)]
|
3987
|
-
pub struct WLAN_BSS_LIST {
|
3988
|
-
pub dwTotalSize: u32,
|
3989
|
-
pub dwNumberOfItems: u32,
|
3990
|
-
pub wlanBssEntries: [WLAN_BSS_ENTRY; 1],
|
3991
|
-
}
|
3992
|
-
#[repr(C)]
|
3993
|
-
#[derive(Clone, Copy)]
|
3994
|
-
pub struct WLAN_CONNECTION_ATTRIBUTES {
|
3995
|
-
pub isState: WLAN_INTERFACE_STATE,
|
3996
|
-
pub wlanConnectionMode: WLAN_CONNECTION_MODE,
|
3997
|
-
pub strProfileName: [u16; 256],
|
3998
|
-
pub wlanAssociationAttributes: WLAN_ASSOCIATION_ATTRIBUTES,
|
3999
|
-
pub wlanSecurityAttributes: WLAN_SECURITY_ATTRIBUTES,
|
4000
|
-
}
|
4001
|
-
#[repr(C)]
|
4002
|
-
#[derive(Clone, Copy)]
|
4003
|
-
pub struct WLAN_CONNECTION_NOTIFICATION_DATA {
|
4004
|
-
pub wlanConnectionMode: WLAN_CONNECTION_MODE,
|
4005
|
-
pub strProfileName: [u16; 256],
|
4006
|
-
pub dot11Ssid: DOT11_SSID,
|
4007
|
-
pub dot11BssType: DOT11_BSS_TYPE,
|
4008
|
-
pub bSecurityEnabled: super::super::Foundation::BOOL,
|
4009
|
-
pub wlanReasonCode: u32,
|
4010
|
-
pub dwFlags: WLAN_CONNECTION_NOTIFICATION_FLAGS,
|
4011
|
-
pub strProfileXml: [u16; 1],
|
4012
|
-
}
|
4013
|
-
#[repr(C)]
|
4014
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
4015
|
-
#[derive(Clone, Copy)]
|
4016
|
-
pub struct WLAN_CONNECTION_PARAMETERS {
|
4017
|
-
pub wlanConnectionMode: WLAN_CONNECTION_MODE,
|
4018
|
-
pub strProfile: windows_sys::core::PCWSTR,
|
4019
|
-
pub pDot11Ssid: *mut DOT11_SSID,
|
4020
|
-
pub pDesiredBssidList: *mut DOT11_BSSID_LIST,
|
4021
|
-
pub dot11BssType: DOT11_BSS_TYPE,
|
4022
|
-
pub dwFlags: u32,
|
4023
|
-
}
|
4024
|
-
#[repr(C)]
|
4025
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
4026
|
-
#[derive(Clone, Copy)]
|
4027
|
-
pub struct WLAN_CONNECTION_PARAMETERS_V2 {
|
4028
|
-
pub wlanConnectionMode: WLAN_CONNECTION_MODE,
|
4029
|
-
pub strProfile: windows_sys::core::PCWSTR,
|
4030
|
-
pub pDot11Ssid: *mut DOT11_SSID,
|
4031
|
-
pub pDot11Hessid: *mut u8,
|
4032
|
-
pub pDesiredBssidList: *mut DOT11_BSSID_LIST,
|
4033
|
-
pub dot11BssType: DOT11_BSS_TYPE,
|
4034
|
-
pub dwFlags: u32,
|
4035
|
-
pub pDot11AccessNetworkOptions: *mut DOT11_ACCESSNETWORKOPTIONS,
|
4036
|
-
}
|
4037
|
-
#[repr(C)]
|
4038
|
-
#[derive(Clone, Copy)]
|
4039
|
-
pub struct WLAN_COUNTRY_OR_REGION_STRING_LIST {
|
4040
|
-
pub dwNumberOfItems: u32,
|
4041
|
-
pub pCountryOrRegionStringList: [u8; 3],
|
4042
|
-
}
|
4043
|
-
#[repr(C)]
|
4044
|
-
#[derive(Clone, Copy)]
|
4045
|
-
pub struct WLAN_DEVICE_SERVICE_GUID_LIST {
|
4046
|
-
pub dwNumberOfItems: u32,
|
4047
|
-
pub dwIndex: u32,
|
4048
|
-
pub DeviceService: [windows_sys::core::GUID; 1],
|
4049
|
-
}
|
4050
|
-
#[repr(C)]
|
4051
|
-
#[derive(Clone, Copy)]
|
4052
|
-
pub struct WLAN_DEVICE_SERVICE_NOTIFICATION_DATA {
|
4053
|
-
pub DeviceService: windows_sys::core::GUID,
|
4054
|
-
pub dwOpCode: u32,
|
4055
|
-
pub dwDataSize: u32,
|
4056
|
-
pub DataBlob: [u8; 1],
|
4057
|
-
}
|
4058
|
-
#[repr(C)]
|
4059
|
-
#[derive(Clone, Copy)]
|
4060
|
-
pub struct WLAN_HOSTED_NETWORK_CONNECTION_SETTINGS {
|
4061
|
-
pub hostedNetworkSSID: DOT11_SSID,
|
4062
|
-
pub dwMaxNumberOfPeers: u32,
|
4063
|
-
}
|
4064
|
-
#[repr(C)]
|
4065
|
-
#[derive(Clone, Copy)]
|
4066
|
-
pub struct WLAN_HOSTED_NETWORK_DATA_PEER_STATE_CHANGE {
|
4067
|
-
pub OldState: WLAN_HOSTED_NETWORK_PEER_STATE,
|
4068
|
-
pub NewState: WLAN_HOSTED_NETWORK_PEER_STATE,
|
4069
|
-
pub PeerStateChangeReason: WLAN_HOSTED_NETWORK_REASON,
|
4070
|
-
}
|
4071
|
-
#[repr(C)]
|
4072
|
-
#[derive(Clone, Copy)]
|
4073
|
-
pub struct WLAN_HOSTED_NETWORK_PEER_STATE {
|
4074
|
-
pub PeerMacAddress: [u8; 6],
|
4075
|
-
pub PeerAuthState: WLAN_HOSTED_NETWORK_PEER_AUTH_STATE,
|
4076
|
-
}
|
4077
|
-
#[repr(C)]
|
4078
|
-
#[derive(Clone, Copy)]
|
4079
|
-
pub struct WLAN_HOSTED_NETWORK_RADIO_STATE {
|
4080
|
-
pub dot11SoftwareRadioState: DOT11_RADIO_STATE,
|
4081
|
-
pub dot11HardwareRadioState: DOT11_RADIO_STATE,
|
4082
|
-
}
|
4083
|
-
#[repr(C)]
|
4084
|
-
#[derive(Clone, Copy)]
|
4085
|
-
pub struct WLAN_HOSTED_NETWORK_SECURITY_SETTINGS {
|
4086
|
-
pub dot11AuthAlgo: DOT11_AUTH_ALGORITHM,
|
4087
|
-
pub dot11CipherAlgo: DOT11_CIPHER_ALGORITHM,
|
4088
|
-
}
|
4089
|
-
#[repr(C)]
|
4090
|
-
#[derive(Clone, Copy)]
|
4091
|
-
pub struct WLAN_HOSTED_NETWORK_STATE_CHANGE {
|
4092
|
-
pub OldState: WLAN_HOSTED_NETWORK_STATE,
|
4093
|
-
pub NewState: WLAN_HOSTED_NETWORK_STATE,
|
4094
|
-
pub StateChangeReason: WLAN_HOSTED_NETWORK_REASON,
|
4095
|
-
}
|
4096
|
-
#[repr(C)]
|
4097
|
-
#[derive(Clone, Copy)]
|
4098
|
-
pub struct WLAN_HOSTED_NETWORK_STATUS {
|
4099
|
-
pub HostedNetworkState: WLAN_HOSTED_NETWORK_STATE,
|
4100
|
-
pub IPDeviceID: windows_sys::core::GUID,
|
4101
|
-
pub wlanHostedNetworkBSSID: [u8; 6],
|
4102
|
-
pub dot11PhyType: DOT11_PHY_TYPE,
|
4103
|
-
pub ulChannelFrequency: u32,
|
4104
|
-
pub dwNumberOfPeers: u32,
|
4105
|
-
pub PeerList: [WLAN_HOSTED_NETWORK_PEER_STATE; 1],
|
4106
|
-
}
|
4107
|
-
#[repr(C)]
|
4108
|
-
#[derive(Clone, Copy)]
|
4109
|
-
pub struct WLAN_INTERFACE_CAPABILITY {
|
4110
|
-
pub interfaceType: WLAN_INTERFACE_TYPE,
|
4111
|
-
pub bDot11DSupported: super::super::Foundation::BOOL,
|
4112
|
-
pub dwMaxDesiredSsidListSize: u32,
|
4113
|
-
pub dwMaxDesiredBssidListSize: u32,
|
4114
|
-
pub dwNumberOfSupportedPhys: u32,
|
4115
|
-
pub dot11PhyTypes: [DOT11_PHY_TYPE; 64],
|
4116
|
-
}
|
4117
|
-
#[repr(C)]
|
4118
|
-
#[derive(Clone, Copy)]
|
4119
|
-
pub struct WLAN_INTERFACE_INFO {
|
4120
|
-
pub InterfaceGuid: windows_sys::core::GUID,
|
4121
|
-
pub strInterfaceDescription: [u16; 256],
|
4122
|
-
pub isState: WLAN_INTERFACE_STATE,
|
4123
|
-
}
|
4124
|
-
#[repr(C)]
|
4125
|
-
#[derive(Clone, Copy)]
|
4126
|
-
pub struct WLAN_INTERFACE_INFO_LIST {
|
4127
|
-
pub dwNumberOfItems: u32,
|
4128
|
-
pub dwIndex: u32,
|
4129
|
-
pub InterfaceInfo: [WLAN_INTERFACE_INFO; 1],
|
4130
|
-
}
|
4131
|
-
#[repr(C)]
|
4132
|
-
#[derive(Clone, Copy)]
|
4133
|
-
pub struct WLAN_MAC_FRAME_STATISTICS {
|
4134
|
-
pub ullTransmittedFrameCount: u64,
|
4135
|
-
pub ullReceivedFrameCount: u64,
|
4136
|
-
pub ullWEPExcludedCount: u64,
|
4137
|
-
pub ullTKIPLocalMICFailures: u64,
|
4138
|
-
pub ullTKIPReplays: u64,
|
4139
|
-
pub ullTKIPICVErrorCount: u64,
|
4140
|
-
pub ullCCMPReplays: u64,
|
4141
|
-
pub ullCCMPDecryptErrors: u64,
|
4142
|
-
pub ullWEPUndecryptableCount: u64,
|
4143
|
-
pub ullWEPICVErrorCount: u64,
|
4144
|
-
pub ullDecryptSuccessCount: u64,
|
4145
|
-
pub ullDecryptFailureCount: u64,
|
4146
|
-
}
|
4147
|
-
#[repr(C)]
|
4148
|
-
#[derive(Clone, Copy)]
|
4149
|
-
pub struct WLAN_MSM_NOTIFICATION_DATA {
|
4150
|
-
pub wlanConnectionMode: WLAN_CONNECTION_MODE,
|
4151
|
-
pub strProfileName: [u16; 256],
|
4152
|
-
pub dot11Ssid: DOT11_SSID,
|
4153
|
-
pub dot11BssType: DOT11_BSS_TYPE,
|
4154
|
-
pub dot11MacAddr: [u8; 6],
|
4155
|
-
pub bSecurityEnabled: super::super::Foundation::BOOL,
|
4156
|
-
pub bFirstPeer: super::super::Foundation::BOOL,
|
4157
|
-
pub bLastPeer: super::super::Foundation::BOOL,
|
4158
|
-
pub wlanReasonCode: u32,
|
4159
|
-
}
|
4160
|
-
#[repr(C)]
|
4161
|
-
#[derive(Clone, Copy)]
|
4162
|
-
pub struct WLAN_PHY_FRAME_STATISTICS {
|
4163
|
-
pub ullTransmittedFrameCount: u64,
|
4164
|
-
pub ullMulticastTransmittedFrameCount: u64,
|
4165
|
-
pub ullFailedCount: u64,
|
4166
|
-
pub ullRetryCount: u64,
|
4167
|
-
pub ullMultipleRetryCount: u64,
|
4168
|
-
pub ullMaxTXLifetimeExceededCount: u64,
|
4169
|
-
pub ullTransmittedFragmentCount: u64,
|
4170
|
-
pub ullRTSSuccessCount: u64,
|
4171
|
-
pub ullRTSFailureCount: u64,
|
4172
|
-
pub ullACKFailureCount: u64,
|
4173
|
-
pub ullReceivedFrameCount: u64,
|
4174
|
-
pub ullMulticastReceivedFrameCount: u64,
|
4175
|
-
pub ullPromiscuousReceivedFrameCount: u64,
|
4176
|
-
pub ullMaxRXLifetimeExceededCount: u64,
|
4177
|
-
pub ullFrameDuplicateCount: u64,
|
4178
|
-
pub ullReceivedFragmentCount: u64,
|
4179
|
-
pub ullPromiscuousReceivedFragmentCount: u64,
|
4180
|
-
pub ullFCSErrorCount: u64,
|
4181
|
-
}
|
4182
|
-
#[repr(C)]
|
4183
|
-
#[derive(Clone, Copy)]
|
4184
|
-
pub struct WLAN_PHY_RADIO_STATE {
|
4185
|
-
pub dwPhyIndex: u32,
|
4186
|
-
pub dot11SoftwareRadioState: DOT11_RADIO_STATE,
|
4187
|
-
pub dot11HardwareRadioState: DOT11_RADIO_STATE,
|
4188
|
-
}
|
4189
|
-
#[repr(C)]
|
4190
|
-
#[derive(Clone, Copy)]
|
4191
|
-
pub struct WLAN_PROFILE_INFO {
|
4192
|
-
pub strProfileName: [u16; 256],
|
4193
|
-
pub dwFlags: u32,
|
4194
|
-
}
|
4195
|
-
#[repr(C)]
|
4196
|
-
#[derive(Clone, Copy)]
|
4197
|
-
pub struct WLAN_PROFILE_INFO_LIST {
|
4198
|
-
pub dwNumberOfItems: u32,
|
4199
|
-
pub dwIndex: u32,
|
4200
|
-
pub ProfileInfo: [WLAN_PROFILE_INFO; 1],
|
4201
|
-
}
|
4202
|
-
#[repr(C)]
|
4203
|
-
#[derive(Clone, Copy)]
|
4204
|
-
pub struct WLAN_RADIO_STATE {
|
4205
|
-
pub dwNumberOfPhys: u32,
|
4206
|
-
pub PhyRadioState: [WLAN_PHY_RADIO_STATE; 64],
|
4207
|
-
}
|
4208
|
-
#[repr(C)]
|
4209
|
-
#[derive(Clone, Copy)]
|
4210
|
-
pub struct WLAN_RATE_SET {
|
4211
|
-
pub uRateSetLength: u32,
|
4212
|
-
pub usRateSet: [u16; 126],
|
4213
|
-
}
|
4214
|
-
#[repr(C)]
|
4215
|
-
#[derive(Clone, Copy)]
|
4216
|
-
pub struct WLAN_RAW_DATA {
|
4217
|
-
pub dwDataSize: u32,
|
4218
|
-
pub DataBlob: [u8; 1],
|
4219
|
-
}
|
4220
|
-
#[repr(C)]
|
4221
|
-
#[derive(Clone, Copy)]
|
4222
|
-
pub struct WLAN_RAW_DATA_LIST {
|
4223
|
-
pub dwTotalSize: u32,
|
4224
|
-
pub dwNumberOfItems: u32,
|
4225
|
-
pub DataList: [WLAN_RAW_DATA_LIST_0; 1],
|
4226
|
-
}
|
4227
|
-
#[repr(C)]
|
4228
|
-
#[derive(Clone, Copy)]
|
4229
|
-
pub struct WLAN_RAW_DATA_LIST_0 {
|
4230
|
-
pub dwDataOffset: u32,
|
4231
|
-
pub dwDataSize: u32,
|
4232
|
-
}
|
4233
|
-
#[repr(C)]
|
4234
|
-
#[derive(Clone, Copy)]
|
4235
|
-
pub struct WLAN_SECURITY_ATTRIBUTES {
|
4236
|
-
pub bSecurityEnabled: super::super::Foundation::BOOL,
|
4237
|
-
pub bOneXEnabled: super::super::Foundation::BOOL,
|
4238
|
-
pub dot11AuthAlgorithm: DOT11_AUTH_ALGORITHM,
|
4239
|
-
pub dot11CipherAlgorithm: DOT11_CIPHER_ALGORITHM,
|
4240
|
-
}
|
4241
|
-
#[repr(C)]
|
4242
|
-
#[derive(Clone, Copy)]
|
4243
|
-
pub struct WLAN_STATISTICS {
|
4244
|
-
pub ullFourWayHandshakeFailures: u64,
|
4245
|
-
pub ullTKIPCounterMeasuresInvoked: u64,
|
4246
|
-
pub ullReserved: u64,
|
4247
|
-
pub MacUcastCounters: WLAN_MAC_FRAME_STATISTICS,
|
4248
|
-
pub MacMcastCounters: WLAN_MAC_FRAME_STATISTICS,
|
4249
|
-
pub dwNumberOfPhys: u32,
|
4250
|
-
pub PhyCounters: [WLAN_PHY_FRAME_STATISTICS; 1],
|
4251
|
-
}
|
4252
|
-
pub type DOT11EXTIHV_ADAPTER_RESET = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE) -> u32>;
|
4253
|
-
pub type DOT11EXTIHV_CONTROL = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, dwinbuffersize: u32, pinbuffer: *const u8, dwoutbuffersize: u32, poutbuffer: *mut u8, pdwbytesreturned: *mut u32) -> u32>;
|
4254
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
4255
|
-
pub type DOT11EXTIHV_CREATE_DISCOVERY_PROFILES = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, binsecure: super::super::Foundation::BOOL, pihvprofileparams: *const DOT11EXT_IHV_PROFILE_PARAMS, pconnectablebssid: *const DOT11_BSS_LIST, pihvdiscoveryprofilelist: *mut DOT11EXT_IHV_DISCOVERY_PROFILE_LIST, pdwreasoncode: *mut u32) -> u32>;
|
4256
|
-
pub type DOT11EXTIHV_DEINIT_ADAPTER = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE)>;
|
4257
|
-
pub type DOT11EXTIHV_DEINIT_SERVICE = Option<unsafe extern "system" fn()>;
|
4258
|
-
pub type DOT11EXTIHV_GET_VERSION_INFO = Option<unsafe extern "system" fn(pdot11ihvversioninfo: *mut DOT11_IHV_VERSION_INFO) -> u32>;
|
4259
|
-
pub type DOT11EXTIHV_INIT_ADAPTER = Option<unsafe extern "system" fn(pdot11adapter: *const DOT11_ADAPTER, hdot11svchandle: super::super::Foundation::HANDLE, phihvextadapter: *mut super::super::Foundation::HANDLE) -> u32>;
|
4260
|
-
#[cfg(all(feature = "Win32_NetworkManagement_Ndis", feature = "Win32_Security_ExtensibleAuthenticationProtocol", feature = "Win32_System_RemoteDesktop"))]
|
4261
|
-
pub type DOT11EXTIHV_INIT_SERVICE = Option<unsafe extern "system" fn(dwvernumused: u32, pdot11extapi: *const DOT11EXT_APIS, pvreserved: *const core::ffi::c_void, pdot11ihvhandlers: *mut DOT11EXT_IHV_HANDLERS) -> u32>;
|
4262
|
-
pub type DOT11EXTIHV_INIT_VIRTUAL_STATION = Option<unsafe extern "system" fn(pdot11extvsapi: *const DOT11EXT_VIRTUAL_STATION_APIS, pvreserved: *const core::ffi::c_void) -> u32>;
|
4263
|
-
pub type DOT11EXTIHV_IS_UI_REQUEST_PENDING = Option<unsafe extern "system" fn(guiduirequest: windows_sys::core::GUID, pbisrequestpending: *mut super::super::Foundation::BOOL) -> u32>;
|
4264
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
4265
|
-
pub type DOT11EXTIHV_ONEX_INDICATE_RESULT = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, msonexresult: DOT11_MSONEX_RESULT, pdot11msonexresultparams: *const DOT11_MSONEX_RESULT_PARAMS) -> u32>;
|
4266
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
4267
|
-
pub type DOT11EXTIHV_PERFORM_CAPABILITY_MATCH = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, pihvprofileparams: *const DOT11EXT_IHV_PROFILE_PARAMS, pihvconnprofile: *const DOT11EXT_IHV_CONNECTIVITY_PROFILE, pihvsecprofile: *const DOT11EXT_IHV_SECURITY_PROFILE, pconnectablebssid: *const DOT11_BSS_LIST, pdwreasoncode: *mut u32) -> u32>;
|
4268
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
4269
|
-
pub type DOT11EXTIHV_PERFORM_POST_ASSOCIATE = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, hsecuritysessionid: super::super::Foundation::HANDLE, pportstate: *const DOT11_PORT_STATE, udot11assocparamsbytes: u32, pdot11assocparams: *const DOT11_ASSOCIATION_COMPLETION_PARAMETERS) -> u32>;
|
4270
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
4271
|
-
pub type DOT11EXTIHV_PERFORM_PRE_ASSOCIATE = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, hconnectsession: super::super::Foundation::HANDLE, pihvprofileparams: *const DOT11EXT_IHV_PROFILE_PARAMS, pihvconnprofile: *const DOT11EXT_IHV_CONNECTIVITY_PROFILE, pihvsecprofile: *const DOT11EXT_IHV_SECURITY_PROFILE, pconnectablebssid: *const DOT11_BSS_LIST, pdwreasoncode: *mut u32) -> u32>;
|
4272
|
-
#[cfg(feature = "Win32_System_RemoteDesktop")]
|
4273
|
-
pub type DOT11EXTIHV_PROCESS_SESSION_CHANGE = Option<unsafe extern "system" fn(ueventtype: u32, psessionnotification: *const super::super::System::RemoteDesktop::WTSSESSION_NOTIFICATION) -> u32>;
|
4274
|
-
pub type DOT11EXTIHV_PROCESS_UI_RESPONSE = Option<unsafe extern "system" fn(guiduirequest: windows_sys::core::GUID, dwbytecount: u32, pvresponsebuffer: *const core::ffi::c_void) -> u32>;
|
4275
|
-
pub type DOT11EXTIHV_QUERY_UI_REQUEST = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, connectionphase: DOT11EXT_IHV_CONNECTION_PHASE, ppihvuirequest: *mut *mut DOT11EXT_IHV_UI_REQUEST) -> u32>;
|
4276
|
-
pub type DOT11EXTIHV_RECEIVE_INDICATION = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, indicationtype: DOT11EXT_IHV_INDICATION_TYPE, ubufferlength: u32, pvbuffer: *const core::ffi::c_void) -> u32>;
|
4277
|
-
pub type DOT11EXTIHV_RECEIVE_PACKET = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, dwinbuffersize: u32, pvinbuffer: *const core::ffi::c_void) -> u32>;
|
4278
|
-
pub type DOT11EXTIHV_SEND_PACKET_COMPLETION = Option<unsafe extern "system" fn(hsendcompletion: super::super::Foundation::HANDLE) -> u32>;
|
4279
|
-
pub type DOT11EXTIHV_STOP_POST_ASSOCIATE = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, ppeer: *const *const u8, dot11assocstatus: u32) -> u32>;
|
4280
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
4281
|
-
pub type DOT11EXTIHV_VALIDATE_PROFILE = Option<unsafe extern "system" fn(hihvextadapter: super::super::Foundation::HANDLE, pihvprofileparams: *const DOT11EXT_IHV_PROFILE_PARAMS, pihvconnprofile: *const DOT11EXT_IHV_CONNECTIVITY_PROFILE, pihvsecprofile: *const DOT11EXT_IHV_SECURITY_PROFILE, pdwreasoncode: *mut u32) -> u32>;
|
4282
|
-
pub type DOT11EXT_ALLOCATE_BUFFER = Option<unsafe extern "system" fn(dwbytecount: u32, ppvbuffer: *mut *mut core::ffi::c_void) -> u32>;
|
4283
|
-
pub type DOT11EXT_FREE_BUFFER = Option<unsafe extern "system" fn(pvmemory: *const core::ffi::c_void)>;
|
4284
|
-
pub type DOT11EXT_GET_PROFILE_CUSTOM_USER_DATA = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, hconnectsession: super::super::Foundation::HANDLE, dwsessionid: u32, pdwdatasize: *mut u32, ppvdata: *mut *mut core::ffi::c_void) -> u32>;
|
4285
|
-
pub type DOT11EXT_NIC_SPECIFIC_EXTENSION = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, dwinbuffersize: u32, pvinbuffer: *const core::ffi::c_void, pdwoutbuffersize: *mut u32, pvoutbuffer: *mut core::ffi::c_void) -> u32>;
|
4286
|
-
#[cfg(feature = "Win32_Security_ExtensibleAuthenticationProtocol")]
|
4287
|
-
pub type DOT11EXT_ONEX_START = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, peapattributes: *const super::super::Security::ExtensibleAuthenticationProtocol::EAP_ATTRIBUTES) -> u32>;
|
4288
|
-
pub type DOT11EXT_ONEX_STOP = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE) -> u32>;
|
4289
|
-
pub type DOT11EXT_POST_ASSOCIATE_COMPLETION = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, hsecuritysessionid: super::super::Foundation::HANDLE, ppeer: *const *const u8, dwreasoncode: u32, dwwin32error: u32) -> u32>;
|
4290
|
-
pub type DOT11EXT_PRE_ASSOCIATE_COMPLETION = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, hconnectsession: super::super::Foundation::HANDLE, dwreasoncode: u32, dwwin32error: u32) -> u32>;
|
4291
|
-
pub type DOT11EXT_PROCESS_ONEX_PACKET = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, dwinpacketsize: u32, pvinpacket: *const core::ffi::c_void) -> u32>;
|
4292
|
-
pub type DOT11EXT_QUERY_VIRTUAL_STATION_PROPERTIES = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, pbisvirtualstation: *mut super::super::Foundation::BOOL, pgprimary: *mut windows_sys::core::GUID, pvreserved: *const core::ffi::c_void) -> u32>;
|
4293
|
-
pub type DOT11EXT_RELEASE_VIRTUAL_STATION = Option<unsafe extern "system" fn(hdot11primaryhandle: super::super::Foundation::HANDLE, pvreserved: *const core::ffi::c_void) -> u32>;
|
4294
|
-
pub type DOT11EXT_REQUEST_VIRTUAL_STATION = Option<unsafe extern "system" fn(hdot11primaryhandle: super::super::Foundation::HANDLE, pvreserved: *const core::ffi::c_void) -> u32>;
|
4295
|
-
pub type DOT11EXT_SEND_NOTIFICATION = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, pnotificationdata: *const L2_NOTIFICATION_DATA) -> u32>;
|
4296
|
-
pub type DOT11EXT_SEND_PACKET = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, upacketlen: u32, pvpacket: *const core::ffi::c_void, hsendcompletion: super::super::Foundation::HANDLE) -> u32>;
|
4297
|
-
pub type DOT11EXT_SEND_UI_REQUEST = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, pihvuirequest: *const DOT11EXT_IHV_UI_REQUEST) -> u32>;
|
4298
|
-
pub type DOT11EXT_SET_AUTH_ALGORITHM = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, dwauthalgo: u32) -> u32>;
|
4299
|
-
pub type DOT11EXT_SET_CURRENT_PROFILE = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, hconnectsession: super::super::Foundation::HANDLE, pihvconnprofile: *const DOT11EXT_IHV_CONNECTIVITY_PROFILE, pihvsecprofile: *const DOT11EXT_IHV_SECURITY_PROFILE) -> u32>;
|
4300
|
-
#[cfg(feature = "Win32_NetworkManagement_Ndis")]
|
4301
|
-
pub type DOT11EXT_SET_DEFAULT_KEY = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, pkey: *const DOT11_CIPHER_DEFAULT_KEY_VALUE, dot11direction: DOT11_DIRECTION) -> u32>;
|
4302
|
-
pub type DOT11EXT_SET_DEFAULT_KEY_ID = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, udefaultkeyid: u32) -> u32>;
|
4303
|
-
pub type DOT11EXT_SET_ETHERTYPE_HANDLING = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, umaxbacklog: u32, unumofexemption: u32, pexemption: *const DOT11_PRIVACY_EXEMPTION, unumofregistration: u32, pusregistration: *const u16) -> u32>;
|
4304
|
-
pub type DOT11EXT_SET_EXCLUDE_UNENCRYPTED = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, bexcludeunencrypted: super::super::Foundation::BOOL) -> u32>;
|
4305
|
-
pub type DOT11EXT_SET_KEY_MAPPING_KEY = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, pkey: *const DOT11_CIPHER_KEY_MAPPING_KEY_VALUE) -> u32>;
|
4306
|
-
pub type DOT11EXT_SET_MULTICAST_CIPHER_ALGORITHM = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, dwmulticastcipheralgo: u32) -> u32>;
|
4307
|
-
pub type DOT11EXT_SET_PROFILE_CUSTOM_USER_DATA = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, hconnectsession: super::super::Foundation::HANDLE, dwsessionid: u32, dwdatasize: u32, pvdata: *const core::ffi::c_void) -> u32>;
|
4308
|
-
pub type DOT11EXT_SET_UNICAST_CIPHER_ALGORITHM = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, dwunicastcipheralgo: u32) -> u32>;
|
4309
|
-
pub type DOT11EXT_SET_VIRTUAL_STATION_AP_PROPERTIES = Option<unsafe extern "system" fn(hdot11svchandle: super::super::Foundation::HANDLE, hconnectsession: super::super::Foundation::HANDLE, dwnumproperties: u32, pproperties: *const DOT11EXT_VIRTUAL_STATION_AP_PROPERTY, pvreserved: *const core::ffi::c_void) -> u32>;
|
4310
|
-
pub type WFD_OPEN_SESSION_COMPLETE_CALLBACK = Option<unsafe extern "system" fn(hsessionhandle: super::super::Foundation::HANDLE, pvcontext: *const core::ffi::c_void, guidsessioninterface: windows_sys::core::GUID, dwerror: u32, dwreasoncode: u32)>;
|
4311
|
-
pub type WLAN_NOTIFICATION_CALLBACK = Option<unsafe extern "system" fn(param0: *mut L2_NOTIFICATION_DATA, param1: *mut core::ffi::c_void)>;
|