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,1317 +0,0 @@
|
|
1
|
-
windows_targets::link!("ntdll.dll" "system" fn NtClose(handle : super::super::Win32::Foundation:: HANDLE) -> super::super::Win32::Foundation:: NTSTATUS);
|
2
|
-
windows_targets::link!("ntdll.dll" "system" fn NtQueryObject(handle : super::super::Win32::Foundation:: HANDLE, objectinformationclass : OBJECT_INFORMATION_CLASS, objectinformation : *mut core::ffi::c_void, objectinformationlength : u32, returnlength : *mut u32) -> super::super::Win32::Foundation:: NTSTATUS);
|
3
|
-
pub const DontUseThisType: POOL_TYPE = 3i32;
|
4
|
-
pub const DontUseThisTypeSession: POOL_TYPE = 35i32;
|
5
|
-
pub const IoPriorityCritical: IO_PRIORITY_HINT = 4i32;
|
6
|
-
pub const IoPriorityHigh: IO_PRIORITY_HINT = 3i32;
|
7
|
-
pub const IoPriorityLow: IO_PRIORITY_HINT = 1i32;
|
8
|
-
pub const IoPriorityNormal: IO_PRIORITY_HINT = 2i32;
|
9
|
-
pub const IoPriorityVeryLow: IO_PRIORITY_HINT = 0i32;
|
10
|
-
pub const LockQueueAfdWorkQueueLock: KSPIN_LOCK_QUEUE_NUMBER = 13i32;
|
11
|
-
pub const LockQueueBcbLock: KSPIN_LOCK_QUEUE_NUMBER = 14i32;
|
12
|
-
pub const LockQueueIoCancelLock: KSPIN_LOCK_QUEUE_NUMBER = 7i32;
|
13
|
-
pub const LockQueueIoCompletionLock: KSPIN_LOCK_QUEUE_NUMBER = 11i32;
|
14
|
-
pub const LockQueueIoDatabaseLock: KSPIN_LOCK_QUEUE_NUMBER = 10i32;
|
15
|
-
pub const LockQueueIoVpbLock: KSPIN_LOCK_QUEUE_NUMBER = 9i32;
|
16
|
-
pub const LockQueueMasterLock: KSPIN_LOCK_QUEUE_NUMBER = 5i32;
|
17
|
-
pub const LockQueueMaximumLock: KSPIN_LOCK_QUEUE_NUMBER = 17i32;
|
18
|
-
pub const LockQueueNonPagedPoolLock: KSPIN_LOCK_QUEUE_NUMBER = 6i32;
|
19
|
-
pub const LockQueueNtfsStructLock: KSPIN_LOCK_QUEUE_NUMBER = 12i32;
|
20
|
-
pub const LockQueueUnusedSpare0: KSPIN_LOCK_QUEUE_NUMBER = 0i32;
|
21
|
-
pub const LockQueueUnusedSpare1: KSPIN_LOCK_QUEUE_NUMBER = 1i32;
|
22
|
-
pub const LockQueueUnusedSpare15: KSPIN_LOCK_QUEUE_NUMBER = 15i32;
|
23
|
-
pub const LockQueueUnusedSpare16: KSPIN_LOCK_QUEUE_NUMBER = 16i32;
|
24
|
-
pub const LockQueueUnusedSpare2: KSPIN_LOCK_QUEUE_NUMBER = 2i32;
|
25
|
-
pub const LockQueueUnusedSpare3: KSPIN_LOCK_QUEUE_NUMBER = 3i32;
|
26
|
-
pub const LockQueueUnusedSpare8: KSPIN_LOCK_QUEUE_NUMBER = 8i32;
|
27
|
-
pub const LockQueueVacbLock: KSPIN_LOCK_QUEUE_NUMBER = 4i32;
|
28
|
-
pub const MaxIoPriorityTypes: IO_PRIORITY_HINT = 5i32;
|
29
|
-
pub const MaxPoolType: POOL_TYPE = 7i32;
|
30
|
-
pub const NTSTRSAFE_MAX_CCH: u32 = 2147483647u32;
|
31
|
-
pub const NTSTRSAFE_MAX_LENGTH: u32 = 2147483646u32;
|
32
|
-
pub const NTSTRSAFE_UNICODE_STRING_MAX_CCH: u32 = 32767u32;
|
33
|
-
pub const NTSTRSAFE_USE_SECURE_CRT: u32 = 0u32;
|
34
|
-
pub const NonPagedPool: POOL_TYPE = 0i32;
|
35
|
-
pub const NonPagedPoolBase: POOL_TYPE = 0i32;
|
36
|
-
pub const NonPagedPoolBaseCacheAligned: POOL_TYPE = 4i32;
|
37
|
-
pub const NonPagedPoolBaseCacheAlignedMustS: POOL_TYPE = 6i32;
|
38
|
-
pub const NonPagedPoolBaseMustSucceed: POOL_TYPE = 2i32;
|
39
|
-
pub const NonPagedPoolCacheAligned: POOL_TYPE = 4i32;
|
40
|
-
pub const NonPagedPoolCacheAlignedMustS: POOL_TYPE = 6i32;
|
41
|
-
pub const NonPagedPoolCacheAlignedMustSSession: POOL_TYPE = 38i32;
|
42
|
-
pub const NonPagedPoolCacheAlignedSession: POOL_TYPE = 36i32;
|
43
|
-
pub const NonPagedPoolExecute: POOL_TYPE = 0i32;
|
44
|
-
pub const NonPagedPoolMustSucceed: POOL_TYPE = 2i32;
|
45
|
-
pub const NonPagedPoolMustSucceedSession: POOL_TYPE = 34i32;
|
46
|
-
pub const NonPagedPoolNx: POOL_TYPE = 512i32;
|
47
|
-
pub const NonPagedPoolNxCacheAligned: POOL_TYPE = 516i32;
|
48
|
-
pub const NonPagedPoolSession: POOL_TYPE = 32i32;
|
49
|
-
pub const NonPagedPoolSessionNx: POOL_TYPE = 544i32;
|
50
|
-
pub const ObjectBasicInformation: OBJECT_INFORMATION_CLASS = 0i32;
|
51
|
-
pub const ObjectTypeInformation: OBJECT_INFORMATION_CLASS = 2i32;
|
52
|
-
pub const PagedPool: POOL_TYPE = 1i32;
|
53
|
-
pub const PagedPoolCacheAligned: POOL_TYPE = 5i32;
|
54
|
-
pub const PagedPoolCacheAlignedSession: POOL_TYPE = 37i32;
|
55
|
-
pub const PagedPoolSession: POOL_TYPE = 33i32;
|
56
|
-
pub const STRSAFE_FILL_BEHIND: u32 = 512u32;
|
57
|
-
pub const STRSAFE_FILL_BEHIND_NULL: u32 = 512u32;
|
58
|
-
pub const STRSAFE_FILL_ON_FAILURE: u32 = 1024u32;
|
59
|
-
pub const STRSAFE_IGNORE_NULLS: u32 = 256u32;
|
60
|
-
pub const STRSAFE_NO_TRUNCATION: u32 = 4096u32;
|
61
|
-
pub const STRSAFE_NULL_ON_FAILURE: u32 = 2048u32;
|
62
|
-
pub const STRSAFE_ZERO_LENGTH_ON_FAILURE: u32 = 2048u32;
|
63
|
-
pub const __WARNING_BANNED_API_USAGE: u32 = 28719u32;
|
64
|
-
pub const __WARNING_CYCLOMATIC_COMPLEXITY: u32 = 28734u32;
|
65
|
-
pub const __WARNING_DEREF_NULL_PTR: u32 = 6011u32;
|
66
|
-
pub const __WARNING_HIGH_PRIORITY_OVERFLOW_POSTCONDITION: u32 = 26045u32;
|
67
|
-
pub const __WARNING_INCORRECT_ANNOTATION: u32 = 26007u32;
|
68
|
-
pub const __WARNING_INVALID_PARAM_VALUE_1: u32 = 6387u32;
|
69
|
-
pub const __WARNING_INVALID_PARAM_VALUE_3: u32 = 28183u32;
|
70
|
-
pub const __WARNING_MISSING_ZERO_TERMINATION2: u32 = 6054u32;
|
71
|
-
pub const __WARNING_POSTCONDITION_NULLTERMINATION_VIOLATION: u32 = 26036u32;
|
72
|
-
pub const __WARNING_POST_EXPECTED: u32 = 28210u32;
|
73
|
-
pub const __WARNING_POTENTIAL_BUFFER_OVERFLOW_HIGH_PRIORITY: u32 = 26015u32;
|
74
|
-
pub const __WARNING_POTENTIAL_RANGE_POSTCONDITION_VIOLATION: u32 = 26071u32;
|
75
|
-
pub const __WARNING_PRECONDITION_NULLTERMINATION_VIOLATION: u32 = 26035u32;
|
76
|
-
pub const __WARNING_RANGE_POSTCONDITION_VIOLATION: u32 = 26061u32;
|
77
|
-
pub const __WARNING_RETURNING_BAD_RESULT: u32 = 28196u32;
|
78
|
-
pub const __WARNING_RETURN_UNINIT_VAR: u32 = 6101u32;
|
79
|
-
pub const __WARNING_USING_UNINIT_VAR: u32 = 6001u32;
|
80
|
-
pub type IO_PRIORITY_HINT = i32;
|
81
|
-
pub type KSPIN_LOCK_QUEUE_NUMBER = i32;
|
82
|
-
pub type OBJECT_INFORMATION_CLASS = i32;
|
83
|
-
pub type POOL_TYPE = i32;
|
84
|
-
#[repr(C)]
|
85
|
-
#[cfg(all(feature = "Wdk_System_SystemServices", feature = "Win32_Security"))]
|
86
|
-
#[derive(Clone, Copy)]
|
87
|
-
pub struct ACCESS_STATE {
|
88
|
-
pub OperationID: super::super::Win32::Foundation::LUID,
|
89
|
-
pub SecurityEvaluated: super::super::Win32::Foundation::BOOLEAN,
|
90
|
-
pub GenerateAudit: super::super::Win32::Foundation::BOOLEAN,
|
91
|
-
pub GenerateOnClose: super::super::Win32::Foundation::BOOLEAN,
|
92
|
-
pub PrivilegesAllocated: super::super::Win32::Foundation::BOOLEAN,
|
93
|
-
pub Flags: u32,
|
94
|
-
pub RemainingDesiredAccess: u32,
|
95
|
-
pub PreviouslyGrantedAccess: u32,
|
96
|
-
pub OriginalDesiredAccess: u32,
|
97
|
-
pub SubjectSecurityContext: SECURITY_SUBJECT_CONTEXT,
|
98
|
-
pub SecurityDescriptor: super::super::Win32::Security::PSECURITY_DESCRIPTOR,
|
99
|
-
pub AuxData: *mut core::ffi::c_void,
|
100
|
-
pub Privileges: ACCESS_STATE_0,
|
101
|
-
pub AuditPrivileges: super::super::Win32::Foundation::BOOLEAN,
|
102
|
-
pub ObjectName: super::super::Win32::Foundation::UNICODE_STRING,
|
103
|
-
pub ObjectTypeName: super::super::Win32::Foundation::UNICODE_STRING,
|
104
|
-
}
|
105
|
-
#[repr(C)]
|
106
|
-
#[cfg(all(feature = "Wdk_System_SystemServices", feature = "Win32_Security"))]
|
107
|
-
#[derive(Clone, Copy)]
|
108
|
-
pub union ACCESS_STATE_0 {
|
109
|
-
pub InitialPrivilegeSet: super::System::SystemServices::INITIAL_PRIVILEGE_SET,
|
110
|
-
pub PrivilegeSet: super::super::Win32::Security::PRIVILEGE_SET,
|
111
|
-
}
|
112
|
-
#[repr(C)]
|
113
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
114
|
-
#[derive(Clone, Copy)]
|
115
|
-
pub struct DEVICE_OBJECT {
|
116
|
-
pub Type: i16,
|
117
|
-
pub Size: u16,
|
118
|
-
pub ReferenceCount: i32,
|
119
|
-
pub DriverObject: *mut DRIVER_OBJECT,
|
120
|
-
pub NextDevice: *mut DEVICE_OBJECT,
|
121
|
-
pub AttachedDevice: *mut DEVICE_OBJECT,
|
122
|
-
pub CurrentIrp: *mut IRP,
|
123
|
-
pub Timer: PIO_TIMER,
|
124
|
-
pub Flags: u32,
|
125
|
-
pub Characteristics: u32,
|
126
|
-
pub Vpb: *mut VPB,
|
127
|
-
pub DeviceExtension: *mut core::ffi::c_void,
|
128
|
-
pub DeviceType: u32,
|
129
|
-
pub StackSize: i8,
|
130
|
-
pub Queue: DEVICE_OBJECT_0,
|
131
|
-
pub AlignmentRequirement: u32,
|
132
|
-
pub DeviceQueue: KDEVICE_QUEUE,
|
133
|
-
pub Dpc: KDPC,
|
134
|
-
pub ActiveThreadCount: u32,
|
135
|
-
pub SecurityDescriptor: super::super::Win32::Security::PSECURITY_DESCRIPTOR,
|
136
|
-
pub DeviceLock: KEVENT,
|
137
|
-
pub SectorSize: u16,
|
138
|
-
pub Spare1: u16,
|
139
|
-
pub DeviceObjectExtension: *mut DEVOBJ_EXTENSION,
|
140
|
-
pub Reserved: *mut core::ffi::c_void,
|
141
|
-
}
|
142
|
-
#[repr(C)]
|
143
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
144
|
-
#[derive(Clone, Copy)]
|
145
|
-
pub union DEVICE_OBJECT_0 {
|
146
|
-
pub ListEntry: super::super::Win32::System::Kernel::LIST_ENTRY,
|
147
|
-
pub Wcb: super::System::SystemServices::WAIT_CONTEXT_BLOCK,
|
148
|
-
}
|
149
|
-
#[repr(C)]
|
150
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
151
|
-
#[derive(Clone, Copy)]
|
152
|
-
pub struct DEVOBJ_EXTENSION {
|
153
|
-
pub Type: i16,
|
154
|
-
pub Size: u16,
|
155
|
-
pub DeviceObject: *mut DEVICE_OBJECT,
|
156
|
-
pub PowerFlags: u32,
|
157
|
-
pub Dope: *mut _DEVICE_OBJECT_POWER_EXTENSION,
|
158
|
-
pub ExtensionFlags: u32,
|
159
|
-
pub DeviceNode: *mut core::ffi::c_void,
|
160
|
-
pub AttachedTo: *mut DEVICE_OBJECT,
|
161
|
-
pub StartIoCount: i32,
|
162
|
-
pub StartIoKey: i32,
|
163
|
-
pub StartIoFlags: u32,
|
164
|
-
pub Vpb: *mut VPB,
|
165
|
-
pub DependencyNode: *mut core::ffi::c_void,
|
166
|
-
pub InterruptContext: *mut core::ffi::c_void,
|
167
|
-
pub InterruptCount: i32,
|
168
|
-
pub VerifierContext: *mut core::ffi::c_void,
|
169
|
-
}
|
170
|
-
#[repr(C)]
|
171
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
172
|
-
#[derive(Clone, Copy)]
|
173
|
-
pub struct DISPATCHER_HEADER {
|
174
|
-
pub Anonymous: DISPATCHER_HEADER_0,
|
175
|
-
pub SignalState: i32,
|
176
|
-
pub WaitListHead: super::super::Win32::System::Kernel::LIST_ENTRY,
|
177
|
-
}
|
178
|
-
#[repr(C)]
|
179
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
180
|
-
#[derive(Clone, Copy)]
|
181
|
-
pub union DISPATCHER_HEADER_0 {
|
182
|
-
pub Anonymous1: DISPATCHER_HEADER_0_0,
|
183
|
-
pub Anonymous2: DISPATCHER_HEADER_0_1,
|
184
|
-
pub Anonymous3: DISPATCHER_HEADER_0_2,
|
185
|
-
pub Anonymous4: DISPATCHER_HEADER_0_3,
|
186
|
-
pub Anonymous5: DISPATCHER_HEADER_0_4,
|
187
|
-
pub Anonymous6: DISPATCHER_HEADER_0_5,
|
188
|
-
pub Anonymous7: DISPATCHER_HEADER_0_6,
|
189
|
-
}
|
190
|
-
#[repr(C)]
|
191
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
192
|
-
#[derive(Clone, Copy)]
|
193
|
-
pub union DISPATCHER_HEADER_0_0 {
|
194
|
-
pub Lock: i32,
|
195
|
-
pub LockNV: i32,
|
196
|
-
}
|
197
|
-
#[repr(C)]
|
198
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
199
|
-
#[derive(Clone, Copy)]
|
200
|
-
pub struct DISPATCHER_HEADER_0_1 {
|
201
|
-
pub Type: u8,
|
202
|
-
pub Signalling: u8,
|
203
|
-
pub Size: u8,
|
204
|
-
pub Reserved1: u8,
|
205
|
-
}
|
206
|
-
#[repr(C)]
|
207
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
208
|
-
#[derive(Clone, Copy)]
|
209
|
-
pub struct DISPATCHER_HEADER_0_2 {
|
210
|
-
pub TimerType: u8,
|
211
|
-
pub Anonymous1: DISPATCHER_HEADER_0_2_0,
|
212
|
-
pub Hand: u8,
|
213
|
-
pub Anonymous2: DISPATCHER_HEADER_0_2_1,
|
214
|
-
}
|
215
|
-
#[repr(C)]
|
216
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
217
|
-
#[derive(Clone, Copy)]
|
218
|
-
pub union DISPATCHER_HEADER_0_2_0 {
|
219
|
-
pub TimerControlFlags: u8,
|
220
|
-
pub Anonymous: DISPATCHER_HEADER_0_2_0_0,
|
221
|
-
}
|
222
|
-
#[repr(C)]
|
223
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
224
|
-
#[derive(Clone, Copy)]
|
225
|
-
pub struct DISPATCHER_HEADER_0_2_0_0 {
|
226
|
-
pub _bitfield: u8,
|
227
|
-
}
|
228
|
-
#[repr(C)]
|
229
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
230
|
-
#[derive(Clone, Copy)]
|
231
|
-
pub union DISPATCHER_HEADER_0_2_1 {
|
232
|
-
pub TimerMiscFlags: u8,
|
233
|
-
pub Anonymous: DISPATCHER_HEADER_0_2_1_0,
|
234
|
-
}
|
235
|
-
#[repr(C)]
|
236
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
237
|
-
#[derive(Clone, Copy)]
|
238
|
-
pub struct DISPATCHER_HEADER_0_2_1_0 {
|
239
|
-
pub _bitfield: u8,
|
240
|
-
}
|
241
|
-
#[repr(C)]
|
242
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
243
|
-
#[derive(Clone, Copy)]
|
244
|
-
pub struct DISPATCHER_HEADER_0_3 {
|
245
|
-
pub Timer2Type: u8,
|
246
|
-
pub Anonymous: DISPATCHER_HEADER_0_3_0,
|
247
|
-
pub Timer2ComponentId: u8,
|
248
|
-
pub Timer2RelativeId: u8,
|
249
|
-
}
|
250
|
-
#[repr(C)]
|
251
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
252
|
-
#[derive(Clone, Copy)]
|
253
|
-
pub union DISPATCHER_HEADER_0_3_0 {
|
254
|
-
pub Timer2Flags: u8,
|
255
|
-
pub Anonymous: DISPATCHER_HEADER_0_3_0_0,
|
256
|
-
}
|
257
|
-
#[repr(C)]
|
258
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
259
|
-
#[derive(Clone, Copy)]
|
260
|
-
pub struct DISPATCHER_HEADER_0_3_0_0 {
|
261
|
-
pub _bitfield: u8,
|
262
|
-
}
|
263
|
-
#[repr(C)]
|
264
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
265
|
-
#[derive(Clone, Copy)]
|
266
|
-
pub struct DISPATCHER_HEADER_0_4 {
|
267
|
-
pub QueueType: u8,
|
268
|
-
pub Anonymous: DISPATCHER_HEADER_0_4_0,
|
269
|
-
pub QueueSize: u8,
|
270
|
-
pub QueueReserved: u8,
|
271
|
-
}
|
272
|
-
#[repr(C)]
|
273
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
274
|
-
#[derive(Clone, Copy)]
|
275
|
-
pub union DISPATCHER_HEADER_0_4_0 {
|
276
|
-
pub QueueControlFlags: u8,
|
277
|
-
pub Anonymous: DISPATCHER_HEADER_0_4_0_0,
|
278
|
-
}
|
279
|
-
#[repr(C)]
|
280
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
281
|
-
#[derive(Clone, Copy)]
|
282
|
-
pub struct DISPATCHER_HEADER_0_4_0_0 {
|
283
|
-
pub _bitfield: u8,
|
284
|
-
}
|
285
|
-
#[repr(C)]
|
286
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
287
|
-
#[derive(Clone, Copy)]
|
288
|
-
pub struct DISPATCHER_HEADER_0_5 {
|
289
|
-
pub ThreadType: u8,
|
290
|
-
pub ThreadReserved: u8,
|
291
|
-
pub Anonymous1: DISPATCHER_HEADER_0_5_0,
|
292
|
-
pub Anonymous2: DISPATCHER_HEADER_0_5_1,
|
293
|
-
}
|
294
|
-
#[repr(C)]
|
295
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
296
|
-
#[derive(Clone, Copy)]
|
297
|
-
pub union DISPATCHER_HEADER_0_5_0 {
|
298
|
-
pub ThreadControlFlags: u8,
|
299
|
-
pub Anonymous: DISPATCHER_HEADER_0_5_0_0,
|
300
|
-
}
|
301
|
-
#[repr(C)]
|
302
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
303
|
-
#[derive(Clone, Copy)]
|
304
|
-
pub struct DISPATCHER_HEADER_0_5_0_0 {
|
305
|
-
pub _bitfield: u8,
|
306
|
-
}
|
307
|
-
#[repr(C)]
|
308
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
309
|
-
#[derive(Clone, Copy)]
|
310
|
-
pub union DISPATCHER_HEADER_0_5_1 {
|
311
|
-
pub DebugActive: u8,
|
312
|
-
}
|
313
|
-
#[repr(C)]
|
314
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
315
|
-
#[derive(Clone, Copy)]
|
316
|
-
pub struct DISPATCHER_HEADER_0_6 {
|
317
|
-
pub MutantType: u8,
|
318
|
-
pub MutantSize: u8,
|
319
|
-
pub DpcActive: super::super::Win32::Foundation::BOOLEAN,
|
320
|
-
pub MutantReserved: u8,
|
321
|
-
}
|
322
|
-
pub type DMA_COMMON_BUFFER_VECTOR = isize;
|
323
|
-
#[repr(C)]
|
324
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
325
|
-
#[derive(Clone, Copy)]
|
326
|
-
pub struct DRIVER_EXTENSION {
|
327
|
-
pub DriverObject: *mut DRIVER_OBJECT,
|
328
|
-
pub AddDevice: DRIVER_ADD_DEVICE,
|
329
|
-
pub Count: u32,
|
330
|
-
pub ServiceKeyName: super::super::Win32::Foundation::UNICODE_STRING,
|
331
|
-
}
|
332
|
-
#[repr(C)]
|
333
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
334
|
-
#[derive(Clone, Copy)]
|
335
|
-
pub struct DRIVER_OBJECT {
|
336
|
-
pub Type: i16,
|
337
|
-
pub Size: i16,
|
338
|
-
pub DeviceObject: *mut DEVICE_OBJECT,
|
339
|
-
pub Flags: u32,
|
340
|
-
pub DriverStart: *mut core::ffi::c_void,
|
341
|
-
pub DriverSize: u32,
|
342
|
-
pub DriverSection: *mut core::ffi::c_void,
|
343
|
-
pub DriverExtension: *mut DRIVER_EXTENSION,
|
344
|
-
pub DriverName: super::super::Win32::Foundation::UNICODE_STRING,
|
345
|
-
pub HardwareDatabase: *mut super::super::Win32::Foundation::UNICODE_STRING,
|
346
|
-
pub FastIoDispatch: *mut FAST_IO_DISPATCH,
|
347
|
-
pub DriverInit: DRIVER_INITIALIZE,
|
348
|
-
pub DriverStartIo: DRIVER_STARTIO,
|
349
|
-
pub DriverUnload: DRIVER_UNLOAD,
|
350
|
-
pub MajorFunction: [DRIVER_DISPATCH; 28],
|
351
|
-
}
|
352
|
-
pub type ECP_HEADER = isize;
|
353
|
-
pub type ECP_LIST = isize;
|
354
|
-
#[repr(C)]
|
355
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
356
|
-
#[derive(Clone, Copy)]
|
357
|
-
pub struct ERESOURCE {
|
358
|
-
pub SystemResourcesList: super::super::Win32::System::Kernel::LIST_ENTRY,
|
359
|
-
pub OwnerTable: *mut OWNER_ENTRY,
|
360
|
-
pub ActiveCount: i16,
|
361
|
-
pub Anonymous1: ERESOURCE_0,
|
362
|
-
pub SharedWaiters: *mut core::ffi::c_void,
|
363
|
-
pub ExclusiveWaiters: *mut core::ffi::c_void,
|
364
|
-
pub OwnerEntry: OWNER_ENTRY,
|
365
|
-
pub ActiveEntries: u32,
|
366
|
-
pub ContentionCount: u32,
|
367
|
-
pub NumberOfSharedWaiters: u32,
|
368
|
-
pub NumberOfExclusiveWaiters: u32,
|
369
|
-
pub Anonymous2: ERESOURCE_1,
|
370
|
-
pub SpinLock: usize,
|
371
|
-
}
|
372
|
-
#[repr(C)]
|
373
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
374
|
-
#[derive(Clone, Copy)]
|
375
|
-
pub union ERESOURCE_0 {
|
376
|
-
pub Flag: u16,
|
377
|
-
pub Anonymous: ERESOURCE_0_0,
|
378
|
-
}
|
379
|
-
#[repr(C)]
|
380
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
381
|
-
#[derive(Clone, Copy)]
|
382
|
-
pub struct ERESOURCE_0_0 {
|
383
|
-
pub ReservedLowFlags: u8,
|
384
|
-
pub WaiterPriority: u8,
|
385
|
-
}
|
386
|
-
#[repr(C)]
|
387
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
388
|
-
#[derive(Clone, Copy)]
|
389
|
-
pub union ERESOURCE_1 {
|
390
|
-
pub Address: *mut core::ffi::c_void,
|
391
|
-
pub CreatorBackTraceIndex: usize,
|
392
|
-
}
|
393
|
-
#[repr(C)]
|
394
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
395
|
-
#[derive(Clone, Copy)]
|
396
|
-
pub struct FAST_IO_DISPATCH {
|
397
|
-
pub SizeOfFastIoDispatch: u32,
|
398
|
-
pub FastIoCheckIfPossible: FAST_IO_CHECK_IF_POSSIBLE,
|
399
|
-
pub FastIoRead: FAST_IO_READ,
|
400
|
-
pub FastIoWrite: FAST_IO_WRITE,
|
401
|
-
pub FastIoQueryBasicInfo: FAST_IO_QUERY_BASIC_INFO,
|
402
|
-
pub FastIoQueryStandardInfo: FAST_IO_QUERY_STANDARD_INFO,
|
403
|
-
pub FastIoLock: FAST_IO_LOCK,
|
404
|
-
pub FastIoUnlockSingle: FAST_IO_UNLOCK_SINGLE,
|
405
|
-
pub FastIoUnlockAll: FAST_IO_UNLOCK_ALL,
|
406
|
-
pub FastIoUnlockAllByKey: FAST_IO_UNLOCK_ALL_BY_KEY,
|
407
|
-
pub FastIoDeviceControl: FAST_IO_DEVICE_CONTROL,
|
408
|
-
pub AcquireFileForNtCreateSection: FAST_IO_ACQUIRE_FILE,
|
409
|
-
pub ReleaseFileForNtCreateSection: FAST_IO_RELEASE_FILE,
|
410
|
-
pub FastIoDetachDevice: FAST_IO_DETACH_DEVICE,
|
411
|
-
pub FastIoQueryNetworkOpenInfo: FAST_IO_QUERY_NETWORK_OPEN_INFO,
|
412
|
-
pub AcquireForModWrite: FAST_IO_ACQUIRE_FOR_MOD_WRITE,
|
413
|
-
pub MdlRead: FAST_IO_MDL_READ,
|
414
|
-
pub MdlReadComplete: FAST_IO_MDL_READ_COMPLETE,
|
415
|
-
pub PrepareMdlWrite: FAST_IO_PREPARE_MDL_WRITE,
|
416
|
-
pub MdlWriteComplete: FAST_IO_MDL_WRITE_COMPLETE,
|
417
|
-
pub FastIoReadCompressed: FAST_IO_READ_COMPRESSED,
|
418
|
-
pub FastIoWriteCompressed: FAST_IO_WRITE_COMPRESSED,
|
419
|
-
pub MdlReadCompleteCompressed: FAST_IO_MDL_READ_COMPLETE_COMPRESSED,
|
420
|
-
pub MdlWriteCompleteCompressed: FAST_IO_MDL_WRITE_COMPLETE_COMPRESSED,
|
421
|
-
pub FastIoQueryOpen: FAST_IO_QUERY_OPEN,
|
422
|
-
pub ReleaseForModWrite: FAST_IO_RELEASE_FOR_MOD_WRITE,
|
423
|
-
pub AcquireForCcFlush: FAST_IO_ACQUIRE_FOR_CCFLUSH,
|
424
|
-
pub ReleaseForCcFlush: FAST_IO_RELEASE_FOR_CCFLUSH,
|
425
|
-
}
|
426
|
-
#[repr(C)]
|
427
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
428
|
-
#[derive(Clone, Copy)]
|
429
|
-
pub struct FAST_MUTEX {
|
430
|
-
pub Count: i32,
|
431
|
-
pub Owner: *mut core::ffi::c_void,
|
432
|
-
pub Contention: u32,
|
433
|
-
pub Event: KEVENT,
|
434
|
-
pub OldIrql: u32,
|
435
|
-
}
|
436
|
-
#[repr(C)]
|
437
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
438
|
-
#[derive(Clone, Copy)]
|
439
|
-
pub struct FILE_OBJECT {
|
440
|
-
pub Type: i16,
|
441
|
-
pub Size: i16,
|
442
|
-
pub DeviceObject: *mut DEVICE_OBJECT,
|
443
|
-
pub Vpb: *mut VPB,
|
444
|
-
pub FsContext: *mut core::ffi::c_void,
|
445
|
-
pub FsContext2: *mut core::ffi::c_void,
|
446
|
-
pub SectionObjectPointer: *mut SECTION_OBJECT_POINTERS,
|
447
|
-
pub PrivateCacheMap: *mut core::ffi::c_void,
|
448
|
-
pub FinalStatus: super::super::Win32::Foundation::NTSTATUS,
|
449
|
-
pub RelatedFileObject: *mut FILE_OBJECT,
|
450
|
-
pub LockOperation: super::super::Win32::Foundation::BOOLEAN,
|
451
|
-
pub DeletePending: super::super::Win32::Foundation::BOOLEAN,
|
452
|
-
pub ReadAccess: super::super::Win32::Foundation::BOOLEAN,
|
453
|
-
pub WriteAccess: super::super::Win32::Foundation::BOOLEAN,
|
454
|
-
pub DeleteAccess: super::super::Win32::Foundation::BOOLEAN,
|
455
|
-
pub SharedRead: super::super::Win32::Foundation::BOOLEAN,
|
456
|
-
pub SharedWrite: super::super::Win32::Foundation::BOOLEAN,
|
457
|
-
pub SharedDelete: super::super::Win32::Foundation::BOOLEAN,
|
458
|
-
pub Flags: u32,
|
459
|
-
pub FileName: super::super::Win32::Foundation::UNICODE_STRING,
|
460
|
-
pub CurrentByteOffset: i64,
|
461
|
-
pub Waiters: u32,
|
462
|
-
pub Busy: u32,
|
463
|
-
pub LastLock: *mut core::ffi::c_void,
|
464
|
-
pub Lock: KEVENT,
|
465
|
-
pub Event: KEVENT,
|
466
|
-
pub CompletionContext: *mut IO_COMPLETION_CONTEXT,
|
467
|
-
pub IrpListLock: usize,
|
468
|
-
pub IrpList: super::super::Win32::System::Kernel::LIST_ENTRY,
|
469
|
-
pub FileObjectExtension: *mut core::ffi::c_void,
|
470
|
-
}
|
471
|
-
pub type IOMMU_DMA_DEVICE = isize;
|
472
|
-
pub type IOMMU_DMA_DOMAIN = isize;
|
473
|
-
#[repr(C)]
|
474
|
-
#[derive(Clone, Copy)]
|
475
|
-
pub struct IO_COMPLETION_CONTEXT {
|
476
|
-
pub Port: *mut core::ffi::c_void,
|
477
|
-
pub Key: *mut core::ffi::c_void,
|
478
|
-
pub UsageCount: isize,
|
479
|
-
}
|
480
|
-
#[repr(C)]
|
481
|
-
#[cfg(all(feature = "Wdk_System_SystemServices", feature = "Win32_Security"))]
|
482
|
-
#[derive(Clone, Copy)]
|
483
|
-
pub struct IO_SECURITY_CONTEXT {
|
484
|
-
pub SecurityQos: *mut super::super::Win32::Security::SECURITY_QUALITY_OF_SERVICE,
|
485
|
-
pub AccessState: *mut ACCESS_STATE,
|
486
|
-
pub DesiredAccess: u32,
|
487
|
-
pub FullCreateOptions: u32,
|
488
|
-
}
|
489
|
-
#[repr(C)]
|
490
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
491
|
-
#[derive(Clone, Copy)]
|
492
|
-
pub struct IO_STACK_LOCATION {
|
493
|
-
pub MajorFunction: u8,
|
494
|
-
pub MinorFunction: u8,
|
495
|
-
pub Flags: u8,
|
496
|
-
pub Control: u8,
|
497
|
-
pub Parameters: IO_STACK_LOCATION_0,
|
498
|
-
pub DeviceObject: *mut DEVICE_OBJECT,
|
499
|
-
pub FileObject: *mut FILE_OBJECT,
|
500
|
-
pub CompletionRoutine: PIO_COMPLETION_ROUTINE,
|
501
|
-
pub Context: *mut core::ffi::c_void,
|
502
|
-
}
|
503
|
-
#[repr(C)]
|
504
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
505
|
-
#[derive(Clone, Copy)]
|
506
|
-
pub union IO_STACK_LOCATION_0 {
|
507
|
-
pub Create: IO_STACK_LOCATION_0_2,
|
508
|
-
pub CreatePipe: IO_STACK_LOCATION_0_1,
|
509
|
-
pub CreateMailslot: IO_STACK_LOCATION_0_0,
|
510
|
-
pub Read: IO_STACK_LOCATION_0_25,
|
511
|
-
pub Write: IO_STACK_LOCATION_0_38,
|
512
|
-
pub QueryDirectory: IO_STACK_LOCATION_0_16,
|
513
|
-
pub NotifyDirectory: IO_STACK_LOCATION_0_10,
|
514
|
-
pub NotifyDirectoryEx: IO_STACK_LOCATION_0_9,
|
515
|
-
pub QueryFile: IO_STACK_LOCATION_0_18,
|
516
|
-
pub SetFile: IO_STACK_LOCATION_0_28,
|
517
|
-
pub QueryEa: IO_STACK_LOCATION_0_17,
|
518
|
-
pub SetEa: IO_STACK_LOCATION_0_27,
|
519
|
-
pub QueryVolume: IO_STACK_LOCATION_0_23,
|
520
|
-
pub SetVolume: IO_STACK_LOCATION_0_32,
|
521
|
-
pub FileSystemControl: IO_STACK_LOCATION_0_5,
|
522
|
-
pub LockControl: IO_STACK_LOCATION_0_7,
|
523
|
-
pub DeviceIoControl: IO_STACK_LOCATION_0_4,
|
524
|
-
pub QuerySecurity: IO_STACK_LOCATION_0_22,
|
525
|
-
pub SetSecurity: IO_STACK_LOCATION_0_31,
|
526
|
-
pub MountVolume: IO_STACK_LOCATION_0_8,
|
527
|
-
pub VerifyVolume: IO_STACK_LOCATION_0_35,
|
528
|
-
pub Scsi: IO_STACK_LOCATION_0_26,
|
529
|
-
pub QueryQuota: IO_STACK_LOCATION_0_21,
|
530
|
-
pub SetQuota: IO_STACK_LOCATION_0_30,
|
531
|
-
pub QueryDeviceRelations: IO_STACK_LOCATION_0_14,
|
532
|
-
pub QueryInterface: IO_STACK_LOCATION_0_20,
|
533
|
-
pub DeviceCapabilities: IO_STACK_LOCATION_0_3,
|
534
|
-
pub FilterResourceRequirements: IO_STACK_LOCATION_0_6,
|
535
|
-
pub ReadWriteConfig: IO_STACK_LOCATION_0_24,
|
536
|
-
pub SetLock: IO_STACK_LOCATION_0_29,
|
537
|
-
pub QueryId: IO_STACK_LOCATION_0_19,
|
538
|
-
pub QueryDeviceText: IO_STACK_LOCATION_0_15,
|
539
|
-
pub UsageNotification: IO_STACK_LOCATION_0_34,
|
540
|
-
pub WaitWake: IO_STACK_LOCATION_0_37,
|
541
|
-
pub PowerSequence: IO_STACK_LOCATION_0_12,
|
542
|
-
pub Power: IO_STACK_LOCATION_0_13,
|
543
|
-
pub StartDevice: IO_STACK_LOCATION_0_33,
|
544
|
-
pub WMI: IO_STACK_LOCATION_0_36,
|
545
|
-
pub Others: IO_STACK_LOCATION_0_11,
|
546
|
-
}
|
547
|
-
#[repr(C)]
|
548
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
549
|
-
#[derive(Clone, Copy)]
|
550
|
-
pub struct IO_STACK_LOCATION_0_0 {
|
551
|
-
pub SecurityContext: *mut IO_SECURITY_CONTEXT,
|
552
|
-
pub Options: u32,
|
553
|
-
pub Reserved: u16,
|
554
|
-
pub ShareAccess: u16,
|
555
|
-
pub Parameters: *mut super::System::SystemServices::MAILSLOT_CREATE_PARAMETERS,
|
556
|
-
}
|
557
|
-
#[repr(C)]
|
558
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
559
|
-
#[derive(Clone, Copy)]
|
560
|
-
pub struct IO_STACK_LOCATION_0_1 {
|
561
|
-
pub SecurityContext: *mut IO_SECURITY_CONTEXT,
|
562
|
-
pub Options: u32,
|
563
|
-
pub Reserved: u16,
|
564
|
-
pub ShareAccess: u16,
|
565
|
-
pub Parameters: *mut super::System::SystemServices::NAMED_PIPE_CREATE_PARAMETERS,
|
566
|
-
}
|
567
|
-
#[repr(C)]
|
568
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
569
|
-
#[derive(Clone, Copy)]
|
570
|
-
pub struct IO_STACK_LOCATION_0_2 {
|
571
|
-
pub SecurityContext: *mut IO_SECURITY_CONTEXT,
|
572
|
-
pub Options: u32,
|
573
|
-
pub FileAttributes: u16,
|
574
|
-
pub ShareAccess: u16,
|
575
|
-
pub EaLength: u32,
|
576
|
-
}
|
577
|
-
#[repr(C)]
|
578
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
579
|
-
#[derive(Clone, Copy)]
|
580
|
-
pub struct IO_STACK_LOCATION_0_3 {
|
581
|
-
pub Capabilities: *mut super::System::SystemServices::DEVICE_CAPABILITIES,
|
582
|
-
}
|
583
|
-
#[repr(C)]
|
584
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
585
|
-
#[derive(Clone, Copy)]
|
586
|
-
pub struct IO_STACK_LOCATION_0_4 {
|
587
|
-
pub OutputBufferLength: u32,
|
588
|
-
pub InputBufferLength: u32,
|
589
|
-
pub IoControlCode: u32,
|
590
|
-
pub Type3InputBuffer: *mut core::ffi::c_void,
|
591
|
-
}
|
592
|
-
#[repr(C)]
|
593
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
594
|
-
#[derive(Clone, Copy)]
|
595
|
-
pub struct IO_STACK_LOCATION_0_5 {
|
596
|
-
pub OutputBufferLength: u32,
|
597
|
-
pub InputBufferLength: u32,
|
598
|
-
pub FsControlCode: u32,
|
599
|
-
pub Type3InputBuffer: *mut core::ffi::c_void,
|
600
|
-
}
|
601
|
-
#[repr(C)]
|
602
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
603
|
-
#[derive(Clone, Copy)]
|
604
|
-
pub struct IO_STACK_LOCATION_0_6 {
|
605
|
-
pub IoResourceRequirementList: *mut super::System::SystemServices::IO_RESOURCE_REQUIREMENTS_LIST,
|
606
|
-
}
|
607
|
-
#[repr(C, packed(4))]
|
608
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
609
|
-
#[derive(Clone, Copy)]
|
610
|
-
pub struct IO_STACK_LOCATION_0_7 {
|
611
|
-
pub Length: *mut i64,
|
612
|
-
pub Key: u32,
|
613
|
-
pub ByteOffset: i64,
|
614
|
-
}
|
615
|
-
#[repr(C)]
|
616
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
617
|
-
#[derive(Clone, Copy)]
|
618
|
-
pub struct IO_STACK_LOCATION_0_8 {
|
619
|
-
pub Vpb: *mut VPB,
|
620
|
-
pub DeviceObject: *mut DEVICE_OBJECT,
|
621
|
-
}
|
622
|
-
#[repr(C)]
|
623
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
624
|
-
#[derive(Clone, Copy)]
|
625
|
-
pub struct IO_STACK_LOCATION_0_9 {
|
626
|
-
pub Length: u32,
|
627
|
-
pub CompletionFilter: u32,
|
628
|
-
pub DirectoryNotifyInformationClass: super::System::SystemServices::DIRECTORY_NOTIFY_INFORMATION_CLASS,
|
629
|
-
}
|
630
|
-
#[repr(C)]
|
631
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
632
|
-
#[derive(Clone, Copy)]
|
633
|
-
pub struct IO_STACK_LOCATION_0_10 {
|
634
|
-
pub Length: u32,
|
635
|
-
pub CompletionFilter: u32,
|
636
|
-
}
|
637
|
-
#[repr(C)]
|
638
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
639
|
-
#[derive(Clone, Copy)]
|
640
|
-
pub struct IO_STACK_LOCATION_0_11 {
|
641
|
-
pub Argument1: *mut core::ffi::c_void,
|
642
|
-
pub Argument2: *mut core::ffi::c_void,
|
643
|
-
pub Argument3: *mut core::ffi::c_void,
|
644
|
-
pub Argument4: *mut core::ffi::c_void,
|
645
|
-
}
|
646
|
-
#[repr(C)]
|
647
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
648
|
-
#[derive(Clone, Copy)]
|
649
|
-
pub struct IO_STACK_LOCATION_0_12 {
|
650
|
-
pub PowerSequence: *mut super::System::SystemServices::POWER_SEQUENCE,
|
651
|
-
}
|
652
|
-
#[repr(C)]
|
653
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
654
|
-
#[derive(Clone, Copy)]
|
655
|
-
pub struct IO_STACK_LOCATION_0_13 {
|
656
|
-
pub Anonymous: IO_STACK_LOCATION_0_13_0,
|
657
|
-
pub Type: super::System::SystemServices::POWER_STATE_TYPE,
|
658
|
-
pub State: super::System::SystemServices::POWER_STATE,
|
659
|
-
pub ShutdownType: super::super::Win32::System::Power::POWER_ACTION,
|
660
|
-
}
|
661
|
-
#[repr(C)]
|
662
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
663
|
-
#[derive(Clone, Copy)]
|
664
|
-
pub union IO_STACK_LOCATION_0_13_0 {
|
665
|
-
pub SystemContext: u32,
|
666
|
-
pub SystemPowerStateContext: super::System::SystemServices::SYSTEM_POWER_STATE_CONTEXT,
|
667
|
-
}
|
668
|
-
#[repr(C)]
|
669
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
670
|
-
#[derive(Clone, Copy)]
|
671
|
-
pub struct IO_STACK_LOCATION_0_14 {
|
672
|
-
pub Type: super::System::SystemServices::DEVICE_RELATION_TYPE,
|
673
|
-
}
|
674
|
-
#[repr(C)]
|
675
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
676
|
-
#[derive(Clone, Copy)]
|
677
|
-
pub struct IO_STACK_LOCATION_0_15 {
|
678
|
-
pub DeviceTextType: super::System::SystemServices::DEVICE_TEXT_TYPE,
|
679
|
-
pub LocaleId: u32,
|
680
|
-
}
|
681
|
-
#[repr(C)]
|
682
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
683
|
-
#[derive(Clone, Copy)]
|
684
|
-
pub struct IO_STACK_LOCATION_0_16 {
|
685
|
-
pub Length: u32,
|
686
|
-
pub FileName: *mut super::super::Win32::Foundation::UNICODE_STRING,
|
687
|
-
pub FileInformationClass: super::Storage::FileSystem::FILE_INFORMATION_CLASS,
|
688
|
-
pub FileIndex: u32,
|
689
|
-
}
|
690
|
-
#[repr(C)]
|
691
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
692
|
-
#[derive(Clone, Copy)]
|
693
|
-
pub struct IO_STACK_LOCATION_0_17 {
|
694
|
-
pub Length: u32,
|
695
|
-
pub EaList: *mut core::ffi::c_void,
|
696
|
-
pub EaListLength: u32,
|
697
|
-
pub EaIndex: u32,
|
698
|
-
}
|
699
|
-
#[repr(C)]
|
700
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
701
|
-
#[derive(Clone, Copy)]
|
702
|
-
pub struct IO_STACK_LOCATION_0_18 {
|
703
|
-
pub Length: u32,
|
704
|
-
pub FileInformationClass: super::Storage::FileSystem::FILE_INFORMATION_CLASS,
|
705
|
-
}
|
706
|
-
#[repr(C)]
|
707
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
708
|
-
#[derive(Clone, Copy)]
|
709
|
-
pub struct IO_STACK_LOCATION_0_19 {
|
710
|
-
pub IdType: super::System::SystemServices::BUS_QUERY_ID_TYPE,
|
711
|
-
}
|
712
|
-
#[repr(C)]
|
713
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
714
|
-
#[derive(Clone, Copy)]
|
715
|
-
pub struct IO_STACK_LOCATION_0_20 {
|
716
|
-
pub InterfaceType: *const windows_sys::core::GUID,
|
717
|
-
pub Size: u16,
|
718
|
-
pub Version: u16,
|
719
|
-
pub Interface: *mut super::System::SystemServices::INTERFACE,
|
720
|
-
pub InterfaceSpecificData: *mut core::ffi::c_void,
|
721
|
-
}
|
722
|
-
#[repr(C)]
|
723
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
724
|
-
#[derive(Clone, Copy)]
|
725
|
-
pub struct IO_STACK_LOCATION_0_21 {
|
726
|
-
pub Length: u32,
|
727
|
-
pub StartSid: super::super::Win32::Security::PSID,
|
728
|
-
pub SidList: *mut super::Storage::FileSystem::FILE_GET_QUOTA_INFORMATION,
|
729
|
-
pub SidListLength: u32,
|
730
|
-
}
|
731
|
-
#[repr(C)]
|
732
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
733
|
-
#[derive(Clone, Copy)]
|
734
|
-
pub struct IO_STACK_LOCATION_0_22 {
|
735
|
-
pub SecurityInformation: u32,
|
736
|
-
pub Length: u32,
|
737
|
-
}
|
738
|
-
#[repr(C)]
|
739
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
740
|
-
#[derive(Clone, Copy)]
|
741
|
-
pub struct IO_STACK_LOCATION_0_23 {
|
742
|
-
pub Length: u32,
|
743
|
-
pub FsInformationClass: super::Storage::FileSystem::FS_INFORMATION_CLASS,
|
744
|
-
}
|
745
|
-
#[repr(C)]
|
746
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
747
|
-
#[derive(Clone, Copy)]
|
748
|
-
pub struct IO_STACK_LOCATION_0_24 {
|
749
|
-
pub WhichSpace: u32,
|
750
|
-
pub Buffer: *mut core::ffi::c_void,
|
751
|
-
pub Offset: u32,
|
752
|
-
pub Length: u32,
|
753
|
-
}
|
754
|
-
#[repr(C, packed(4))]
|
755
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
756
|
-
#[derive(Clone, Copy)]
|
757
|
-
pub struct IO_STACK_LOCATION_0_25 {
|
758
|
-
pub Length: u32,
|
759
|
-
pub Key: u32,
|
760
|
-
pub ByteOffset: i64,
|
761
|
-
}
|
762
|
-
#[repr(C)]
|
763
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
764
|
-
#[derive(Clone, Copy)]
|
765
|
-
pub struct IO_STACK_LOCATION_0_26 {
|
766
|
-
pub Srb: *mut _SCSI_REQUEST_BLOCK,
|
767
|
-
}
|
768
|
-
#[repr(C)]
|
769
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
770
|
-
#[derive(Clone, Copy)]
|
771
|
-
pub struct IO_STACK_LOCATION_0_27 {
|
772
|
-
pub Length: u32,
|
773
|
-
}
|
774
|
-
#[repr(C)]
|
775
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
776
|
-
#[derive(Clone, Copy)]
|
777
|
-
pub struct IO_STACK_LOCATION_0_28 {
|
778
|
-
pub Length: u32,
|
779
|
-
pub FileInformationClass: super::Storage::FileSystem::FILE_INFORMATION_CLASS,
|
780
|
-
pub FileObject: *mut FILE_OBJECT,
|
781
|
-
pub Anonymous: IO_STACK_LOCATION_0_28_0,
|
782
|
-
}
|
783
|
-
#[repr(C)]
|
784
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
785
|
-
#[derive(Clone, Copy)]
|
786
|
-
pub union IO_STACK_LOCATION_0_28_0 {
|
787
|
-
pub Anonymous: IO_STACK_LOCATION_0_28_0_0,
|
788
|
-
pub ClusterCount: u32,
|
789
|
-
pub DeleteHandle: super::super::Win32::Foundation::HANDLE,
|
790
|
-
}
|
791
|
-
#[repr(C)]
|
792
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
793
|
-
#[derive(Clone, Copy)]
|
794
|
-
pub struct IO_STACK_LOCATION_0_28_0_0 {
|
795
|
-
pub ReplaceIfExists: super::super::Win32::Foundation::BOOLEAN,
|
796
|
-
pub AdvanceOnly: super::super::Win32::Foundation::BOOLEAN,
|
797
|
-
}
|
798
|
-
#[repr(C)]
|
799
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
800
|
-
#[derive(Clone, Copy)]
|
801
|
-
pub struct IO_STACK_LOCATION_0_29 {
|
802
|
-
pub Lock: super::super::Win32::Foundation::BOOLEAN,
|
803
|
-
}
|
804
|
-
#[repr(C)]
|
805
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
806
|
-
#[derive(Clone, Copy)]
|
807
|
-
pub struct IO_STACK_LOCATION_0_30 {
|
808
|
-
pub Length: u32,
|
809
|
-
}
|
810
|
-
#[repr(C)]
|
811
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
812
|
-
#[derive(Clone, Copy)]
|
813
|
-
pub struct IO_STACK_LOCATION_0_31 {
|
814
|
-
pub SecurityInformation: u32,
|
815
|
-
pub SecurityDescriptor: super::super::Win32::Security::PSECURITY_DESCRIPTOR,
|
816
|
-
}
|
817
|
-
#[repr(C)]
|
818
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
819
|
-
#[derive(Clone, Copy)]
|
820
|
-
pub struct IO_STACK_LOCATION_0_32 {
|
821
|
-
pub Length: u32,
|
822
|
-
pub FsInformationClass: super::Storage::FileSystem::FS_INFORMATION_CLASS,
|
823
|
-
}
|
824
|
-
#[repr(C)]
|
825
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
826
|
-
#[derive(Clone, Copy)]
|
827
|
-
pub struct IO_STACK_LOCATION_0_33 {
|
828
|
-
pub AllocatedResources: *mut super::System::SystemServices::CM_RESOURCE_LIST,
|
829
|
-
pub AllocatedResourcesTranslated: *mut super::System::SystemServices::CM_RESOURCE_LIST,
|
830
|
-
}
|
831
|
-
#[repr(C)]
|
832
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
833
|
-
#[derive(Clone, Copy)]
|
834
|
-
pub struct IO_STACK_LOCATION_0_34 {
|
835
|
-
pub InPath: super::super::Win32::Foundation::BOOLEAN,
|
836
|
-
pub Reserved: [super::super::Win32::Foundation::BOOLEAN; 3],
|
837
|
-
pub Type: super::System::SystemServices::DEVICE_USAGE_NOTIFICATION_TYPE,
|
838
|
-
}
|
839
|
-
#[repr(C)]
|
840
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
841
|
-
#[derive(Clone, Copy)]
|
842
|
-
pub struct IO_STACK_LOCATION_0_35 {
|
843
|
-
pub Vpb: *mut VPB,
|
844
|
-
pub DeviceObject: *mut DEVICE_OBJECT,
|
845
|
-
}
|
846
|
-
#[repr(C)]
|
847
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
848
|
-
#[derive(Clone, Copy)]
|
849
|
-
pub struct IO_STACK_LOCATION_0_36 {
|
850
|
-
pub ProviderId: usize,
|
851
|
-
pub DataPath: *mut core::ffi::c_void,
|
852
|
-
pub BufferSize: u32,
|
853
|
-
pub Buffer: *mut core::ffi::c_void,
|
854
|
-
}
|
855
|
-
#[repr(C)]
|
856
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
857
|
-
#[derive(Clone, Copy)]
|
858
|
-
pub struct IO_STACK_LOCATION_0_37 {
|
859
|
-
pub PowerState: super::super::Win32::System::Power::SYSTEM_POWER_STATE,
|
860
|
-
}
|
861
|
-
#[repr(C, packed(4))]
|
862
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
863
|
-
#[derive(Clone, Copy)]
|
864
|
-
pub struct IO_STACK_LOCATION_0_38 {
|
865
|
-
pub Length: u32,
|
866
|
-
pub Key: u32,
|
867
|
-
pub ByteOffset: i64,
|
868
|
-
}
|
869
|
-
#[repr(C)]
|
870
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
871
|
-
#[derive(Clone, Copy)]
|
872
|
-
pub struct IRP {
|
873
|
-
pub Type: i16,
|
874
|
-
pub Size: u16,
|
875
|
-
pub MdlAddress: *mut MDL,
|
876
|
-
pub Flags: u32,
|
877
|
-
pub AssociatedIrp: IRP_1,
|
878
|
-
pub ThreadListEntry: super::super::Win32::System::Kernel::LIST_ENTRY,
|
879
|
-
pub IoStatus: super::super::Win32::System::IO::IO_STATUS_BLOCK,
|
880
|
-
pub RequestorMode: i8,
|
881
|
-
pub PendingReturned: super::super::Win32::Foundation::BOOLEAN,
|
882
|
-
pub StackCount: i8,
|
883
|
-
pub CurrentLocation: i8,
|
884
|
-
pub Cancel: super::super::Win32::Foundation::BOOLEAN,
|
885
|
-
pub CancelIrql: u8,
|
886
|
-
pub ApcEnvironment: i8,
|
887
|
-
pub AllocationFlags: u8,
|
888
|
-
pub Anonymous: IRP_0,
|
889
|
-
pub UserEvent: *mut KEVENT,
|
890
|
-
pub Overlay: IRP_2,
|
891
|
-
pub CancelRoutine: DRIVER_CANCEL,
|
892
|
-
pub UserBuffer: *mut core::ffi::c_void,
|
893
|
-
pub Tail: IRP_3,
|
894
|
-
}
|
895
|
-
#[repr(C)]
|
896
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
897
|
-
#[derive(Clone, Copy)]
|
898
|
-
pub union IRP_0 {
|
899
|
-
pub UserIosb: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK,
|
900
|
-
pub IoRingContext: *mut core::ffi::c_void,
|
901
|
-
}
|
902
|
-
#[repr(C)]
|
903
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
904
|
-
#[derive(Clone, Copy)]
|
905
|
-
pub union IRP_1 {
|
906
|
-
pub MasterIrp: *mut IRP,
|
907
|
-
pub IrpCount: i32,
|
908
|
-
pub SystemBuffer: *mut core::ffi::c_void,
|
909
|
-
}
|
910
|
-
#[repr(C)]
|
911
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
912
|
-
#[derive(Clone, Copy)]
|
913
|
-
pub union IRP_2 {
|
914
|
-
pub AsynchronousParameters: IRP_2_0,
|
915
|
-
pub AllocationSize: i64,
|
916
|
-
}
|
917
|
-
#[repr(C)]
|
918
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
919
|
-
#[derive(Clone, Copy)]
|
920
|
-
pub struct IRP_2_0 {
|
921
|
-
pub Anonymous1: IRP_2_0_0,
|
922
|
-
pub Anonymous2: IRP_2_0_1,
|
923
|
-
}
|
924
|
-
#[repr(C)]
|
925
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
926
|
-
#[derive(Clone, Copy)]
|
927
|
-
pub union IRP_2_0_0 {
|
928
|
-
pub UserApcRoutine: super::super::Win32::System::IO::PIO_APC_ROUTINE,
|
929
|
-
pub IssuingProcess: *mut core::ffi::c_void,
|
930
|
-
}
|
931
|
-
#[repr(C)]
|
932
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
933
|
-
#[derive(Clone, Copy)]
|
934
|
-
pub union IRP_2_0_1 {
|
935
|
-
pub UserApcContext: *mut core::ffi::c_void,
|
936
|
-
pub IoRing: *mut _IORING_OBJECT,
|
937
|
-
}
|
938
|
-
#[repr(C)]
|
939
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
940
|
-
#[derive(Clone, Copy)]
|
941
|
-
pub union IRP_3 {
|
942
|
-
pub Overlay: IRP_3_0,
|
943
|
-
pub Apc: super::System::SystemServices::KAPC,
|
944
|
-
pub CompletionKey: *mut core::ffi::c_void,
|
945
|
-
}
|
946
|
-
#[repr(C)]
|
947
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
948
|
-
#[derive(Clone, Copy)]
|
949
|
-
pub struct IRP_3_0 {
|
950
|
-
pub Anonymous1: IRP_3_0_0,
|
951
|
-
pub Thread: PETHREAD,
|
952
|
-
pub AuxiliaryBuffer: windows_sys::core::PSTR,
|
953
|
-
pub Anonymous2: IRP_3_0_1,
|
954
|
-
pub OriginalFileObject: *mut FILE_OBJECT,
|
955
|
-
}
|
956
|
-
#[repr(C)]
|
957
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
958
|
-
#[derive(Clone, Copy)]
|
959
|
-
pub union IRP_3_0_0 {
|
960
|
-
pub DeviceQueueEntry: super::System::SystemServices::KDEVICE_QUEUE_ENTRY,
|
961
|
-
pub Anonymous: IRP_3_0_0_0,
|
962
|
-
}
|
963
|
-
#[repr(C)]
|
964
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
965
|
-
#[derive(Clone, Copy)]
|
966
|
-
pub struct IRP_3_0_0_0 {
|
967
|
-
pub DriverContext: [*mut core::ffi::c_void; 4],
|
968
|
-
}
|
969
|
-
#[repr(C)]
|
970
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
971
|
-
#[derive(Clone, Copy)]
|
972
|
-
pub struct IRP_3_0_1 {
|
973
|
-
pub ListEntry: super::super::Win32::System::Kernel::LIST_ENTRY,
|
974
|
-
pub Anonymous: IRP_3_0_1_0,
|
975
|
-
}
|
976
|
-
#[repr(C)]
|
977
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
978
|
-
#[derive(Clone, Copy)]
|
979
|
-
pub union IRP_3_0_1_0 {
|
980
|
-
pub CurrentStackLocation: *mut IO_STACK_LOCATION,
|
981
|
-
pub PacketType: u32,
|
982
|
-
}
|
983
|
-
#[repr(C)]
|
984
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
985
|
-
#[derive(Clone, Copy)]
|
986
|
-
pub struct KDEVICE_QUEUE {
|
987
|
-
pub Type: i16,
|
988
|
-
pub Size: i16,
|
989
|
-
pub DeviceListHead: super::super::Win32::System::Kernel::LIST_ENTRY,
|
990
|
-
pub Lock: usize,
|
991
|
-
pub Busy: super::super::Win32::Foundation::BOOLEAN,
|
992
|
-
}
|
993
|
-
#[repr(C)]
|
994
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
995
|
-
#[derive(Clone, Copy)]
|
996
|
-
pub struct KDPC {
|
997
|
-
pub Anonymous: KDPC_0,
|
998
|
-
pub DpcListEntry: super::super::Win32::System::Kernel::SINGLE_LIST_ENTRY,
|
999
|
-
pub ProcessorHistory: usize,
|
1000
|
-
pub DeferredRoutine: PKDEFERRED_ROUTINE,
|
1001
|
-
pub DeferredContext: *mut core::ffi::c_void,
|
1002
|
-
pub SystemArgument1: *mut core::ffi::c_void,
|
1003
|
-
pub SystemArgument2: *mut core::ffi::c_void,
|
1004
|
-
pub DpcData: *mut core::ffi::c_void,
|
1005
|
-
}
|
1006
|
-
#[repr(C)]
|
1007
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
1008
|
-
#[derive(Clone, Copy)]
|
1009
|
-
pub union KDPC_0 {
|
1010
|
-
pub TargetInfoAsUlong: u32,
|
1011
|
-
pub Anonymous: KDPC_0_0,
|
1012
|
-
}
|
1013
|
-
#[repr(C)]
|
1014
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
1015
|
-
#[derive(Clone, Copy)]
|
1016
|
-
pub struct KDPC_0_0 {
|
1017
|
-
pub Type: u8,
|
1018
|
-
pub Importance: u8,
|
1019
|
-
pub Number: u16,
|
1020
|
-
}
|
1021
|
-
pub type KENLISTMENT = isize;
|
1022
|
-
#[repr(C)]
|
1023
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
1024
|
-
#[derive(Clone, Copy)]
|
1025
|
-
pub struct KEVENT {
|
1026
|
-
pub Header: DISPATCHER_HEADER,
|
1027
|
-
}
|
1028
|
-
pub type KGDT = isize;
|
1029
|
-
pub type KIDT = isize;
|
1030
|
-
#[repr(C)]
|
1031
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
1032
|
-
#[derive(Clone, Copy)]
|
1033
|
-
pub struct KMUTANT {
|
1034
|
-
pub Header: DISPATCHER_HEADER,
|
1035
|
-
pub MutantListEntry: super::super::Win32::System::Kernel::LIST_ENTRY,
|
1036
|
-
pub OwnerThread: *mut isize,
|
1037
|
-
pub Anonymous: KMUTANT_0,
|
1038
|
-
pub ApcDisable: u8,
|
1039
|
-
}
|
1040
|
-
#[repr(C)]
|
1041
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
1042
|
-
#[derive(Clone, Copy)]
|
1043
|
-
pub union KMUTANT_0 {
|
1044
|
-
pub MutantFlags: u8,
|
1045
|
-
pub Anonymous: KMUTANT_0_0,
|
1046
|
-
}
|
1047
|
-
#[repr(C)]
|
1048
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
1049
|
-
#[derive(Clone, Copy)]
|
1050
|
-
pub struct KMUTANT_0_0 {
|
1051
|
-
pub _bitfield: u8,
|
1052
|
-
}
|
1053
|
-
pub type KPCR = isize;
|
1054
|
-
pub type KPRCB = isize;
|
1055
|
-
#[repr(C)]
|
1056
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
1057
|
-
#[derive(Clone, Copy)]
|
1058
|
-
pub struct KQUEUE {
|
1059
|
-
pub Header: DISPATCHER_HEADER,
|
1060
|
-
pub EntryListHead: super::super::Win32::System::Kernel::LIST_ENTRY,
|
1061
|
-
pub CurrentCount: u32,
|
1062
|
-
pub MaximumCount: u32,
|
1063
|
-
pub ThreadListHead: super::super::Win32::System::Kernel::LIST_ENTRY,
|
1064
|
-
}
|
1065
|
-
pub type KRESOURCEMANAGER = isize;
|
1066
|
-
pub type KTM = isize;
|
1067
|
-
pub type KTRANSACTION = isize;
|
1068
|
-
pub type KTSS = isize;
|
1069
|
-
#[repr(C)]
|
1070
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
1071
|
-
#[derive(Clone, Copy)]
|
1072
|
-
pub struct KWAIT_BLOCK {
|
1073
|
-
pub WaitListEntry: super::super::Win32::System::Kernel::LIST_ENTRY,
|
1074
|
-
pub WaitType: u8,
|
1075
|
-
pub BlockState: u8,
|
1076
|
-
pub WaitKey: u16,
|
1077
|
-
pub Anonymous: KWAIT_BLOCK_0,
|
1078
|
-
pub Object: *mut core::ffi::c_void,
|
1079
|
-
pub SparePtr: *mut core::ffi::c_void,
|
1080
|
-
}
|
1081
|
-
#[repr(C)]
|
1082
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
1083
|
-
#[derive(Clone, Copy)]
|
1084
|
-
pub union KWAIT_BLOCK_0 {
|
1085
|
-
pub Thread: *mut isize,
|
1086
|
-
pub NotificationQueue: *mut KQUEUE,
|
1087
|
-
pub Dpc: *mut KDPC,
|
1088
|
-
}
|
1089
|
-
pub type LOADER_PARAMETER_BLOCK = isize;
|
1090
|
-
#[repr(C)]
|
1091
|
-
#[derive(Clone, Copy)]
|
1092
|
-
pub struct MDL {
|
1093
|
-
pub Next: *mut MDL,
|
1094
|
-
pub Size: i16,
|
1095
|
-
pub MdlFlags: i16,
|
1096
|
-
pub Process: *mut isize,
|
1097
|
-
pub MappedSystemVa: *mut core::ffi::c_void,
|
1098
|
-
pub StartVa: *mut core::ffi::c_void,
|
1099
|
-
pub ByteCount: u32,
|
1100
|
-
pub ByteOffset: u32,
|
1101
|
-
}
|
1102
|
-
#[repr(C)]
|
1103
|
-
#[derive(Clone, Copy)]
|
1104
|
-
pub struct OBJECT_ATTRIBUTES {
|
1105
|
-
pub Length: u32,
|
1106
|
-
pub RootDirectory: super::super::Win32::Foundation::HANDLE,
|
1107
|
-
pub ObjectName: *const super::super::Win32::Foundation::UNICODE_STRING,
|
1108
|
-
pub Attributes: u32,
|
1109
|
-
pub SecurityDescriptor: *const core::ffi::c_void,
|
1110
|
-
pub SecurityQualityOfService: *const core::ffi::c_void,
|
1111
|
-
}
|
1112
|
-
#[repr(C)]
|
1113
|
-
#[derive(Clone, Copy)]
|
1114
|
-
pub struct OBJECT_ATTRIBUTES32 {
|
1115
|
-
pub Length: u32,
|
1116
|
-
pub RootDirectory: u32,
|
1117
|
-
pub ObjectName: u32,
|
1118
|
-
pub Attributes: u32,
|
1119
|
-
pub SecurityDescriptor: u32,
|
1120
|
-
pub SecurityQualityOfService: u32,
|
1121
|
-
}
|
1122
|
-
#[repr(C)]
|
1123
|
-
#[derive(Clone, Copy)]
|
1124
|
-
pub struct OBJECT_ATTRIBUTES64 {
|
1125
|
-
pub Length: u32,
|
1126
|
-
pub RootDirectory: u64,
|
1127
|
-
pub ObjectName: u64,
|
1128
|
-
pub Attributes: u32,
|
1129
|
-
pub SecurityDescriptor: u64,
|
1130
|
-
pub SecurityQualityOfService: u64,
|
1131
|
-
}
|
1132
|
-
#[repr(C)]
|
1133
|
-
#[derive(Clone, Copy)]
|
1134
|
-
pub struct OBJECT_NAME_INFORMATION {
|
1135
|
-
pub Name: super::super::Win32::Foundation::UNICODE_STRING,
|
1136
|
-
}
|
1137
|
-
#[repr(C)]
|
1138
|
-
#[derive(Clone, Copy)]
|
1139
|
-
pub struct OWNER_ENTRY {
|
1140
|
-
pub OwnerThread: usize,
|
1141
|
-
pub Anonymous: OWNER_ENTRY_0,
|
1142
|
-
}
|
1143
|
-
#[repr(C)]
|
1144
|
-
#[derive(Clone, Copy)]
|
1145
|
-
pub union OWNER_ENTRY_0 {
|
1146
|
-
pub Anonymous: OWNER_ENTRY_0_0,
|
1147
|
-
pub TableSize: u32,
|
1148
|
-
}
|
1149
|
-
#[repr(C)]
|
1150
|
-
#[derive(Clone, Copy)]
|
1151
|
-
pub struct OWNER_ENTRY_0_0 {
|
1152
|
-
pub _bitfield: u32,
|
1153
|
-
}
|
1154
|
-
pub type PAFFINITY_TOKEN = isize;
|
1155
|
-
pub type PBUS_HANDLER = isize;
|
1156
|
-
pub type PCALLBACK_OBJECT = isize;
|
1157
|
-
pub type PDEVICE_HANDLER_OBJECT = isize;
|
1158
|
-
pub type PEJOB = isize;
|
1159
|
-
pub type PEPROCESS = isize;
|
1160
|
-
pub type PESILO = isize;
|
1161
|
-
pub type PETHREAD = isize;
|
1162
|
-
pub type PEX_RUNDOWN_REF_CACHE_AWARE = isize;
|
1163
|
-
pub type PEX_TIMER = isize;
|
1164
|
-
pub type PIO_REMOVE_LOCK_TRACKING_BLOCK = isize;
|
1165
|
-
pub type PIO_TIMER = isize;
|
1166
|
-
pub type PIO_WORKITEM = isize;
|
1167
|
-
pub type PKINTERRUPT = isize;
|
1168
|
-
pub type PKPROCESS = isize;
|
1169
|
-
pub type PKTHREAD = isize;
|
1170
|
-
pub type PNOTIFY_SYNC = isize;
|
1171
|
-
pub type POBJECT_TYPE = isize;
|
1172
|
-
pub type POHANDLE = *mut core::ffi::c_void;
|
1173
|
-
pub type PPCW_BUFFER = isize;
|
1174
|
-
pub type PPCW_INSTANCE = isize;
|
1175
|
-
pub type PPCW_REGISTRATION = isize;
|
1176
|
-
pub type PRKPROCESS = isize;
|
1177
|
-
pub type PRKTHREAD = isize;
|
1178
|
-
pub type PSILO_MONITOR = isize;
|
1179
|
-
#[repr(C)]
|
1180
|
-
#[derive(Clone, Copy)]
|
1181
|
-
pub struct RTL_SPLAY_LINKS {
|
1182
|
-
pub Parent: *mut RTL_SPLAY_LINKS,
|
1183
|
-
pub LeftChild: *mut RTL_SPLAY_LINKS,
|
1184
|
-
pub RightChild: *mut RTL_SPLAY_LINKS,
|
1185
|
-
}
|
1186
|
-
#[repr(C)]
|
1187
|
-
#[derive(Clone, Copy)]
|
1188
|
-
pub struct SECTION_OBJECT_POINTERS {
|
1189
|
-
pub DataSectionObject: *mut core::ffi::c_void,
|
1190
|
-
pub SharedCacheMap: *mut core::ffi::c_void,
|
1191
|
-
pub ImageSectionObject: *mut core::ffi::c_void,
|
1192
|
-
}
|
1193
|
-
#[repr(C)]
|
1194
|
-
#[cfg(feature = "Win32_Security")]
|
1195
|
-
#[derive(Clone, Copy)]
|
1196
|
-
pub struct SECURITY_SUBJECT_CONTEXT {
|
1197
|
-
pub ClientToken: *mut core::ffi::c_void,
|
1198
|
-
pub ImpersonationLevel: super::super::Win32::Security::SECURITY_IMPERSONATION_LEVEL,
|
1199
|
-
pub PrimaryToken: *mut core::ffi::c_void,
|
1200
|
-
pub ProcessAuditId: *mut core::ffi::c_void,
|
1201
|
-
}
|
1202
|
-
pub type SspiAsyncContext = isize;
|
1203
|
-
#[repr(C)]
|
1204
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1205
|
-
#[derive(Clone, Copy)]
|
1206
|
-
pub struct TARGET_DEVICE_CUSTOM_NOTIFICATION {
|
1207
|
-
pub Version: u16,
|
1208
|
-
pub Size: u16,
|
1209
|
-
pub Event: windows_sys::core::GUID,
|
1210
|
-
pub FileObject: *mut FILE_OBJECT,
|
1211
|
-
pub NameBufferOffset: i32,
|
1212
|
-
pub CustomDataBuffer: [u8; 1],
|
1213
|
-
}
|
1214
|
-
#[repr(C)]
|
1215
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1216
|
-
#[derive(Clone, Copy)]
|
1217
|
-
pub struct VPB {
|
1218
|
-
pub Type: i16,
|
1219
|
-
pub Size: i16,
|
1220
|
-
pub Flags: u16,
|
1221
|
-
pub VolumeLabelLength: u16,
|
1222
|
-
pub DeviceObject: *mut DEVICE_OBJECT,
|
1223
|
-
pub RealDevice: *mut DEVICE_OBJECT,
|
1224
|
-
pub SerialNumber: u32,
|
1225
|
-
pub ReferenceCount: u32,
|
1226
|
-
pub VolumeLabel: [u16; 32],
|
1227
|
-
}
|
1228
|
-
#[repr(C)]
|
1229
|
-
#[cfg(feature = "Win32_System_Kernel")]
|
1230
|
-
#[derive(Clone, Copy)]
|
1231
|
-
pub struct WORK_QUEUE_ITEM {
|
1232
|
-
pub List: super::super::Win32::System::Kernel::LIST_ENTRY,
|
1233
|
-
pub WorkerRoutine: PWORKER_THREAD_ROUTINE,
|
1234
|
-
pub Parameter: *mut core::ffi::c_void,
|
1235
|
-
}
|
1236
|
-
pub type _DEVICE_OBJECT_POWER_EXTENSION = isize;
|
1237
|
-
pub type _IORING_OBJECT = isize;
|
1238
|
-
pub type _SCSI_REQUEST_BLOCK = isize;
|
1239
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1240
|
-
pub type DRIVER_ADD_DEVICE = Option<unsafe extern "system" fn(driverobject: *const DRIVER_OBJECT, physicaldeviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::NTSTATUS>;
|
1241
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1242
|
-
pub type DRIVER_CANCEL = Option<unsafe extern "system" fn(deviceobject: *mut DEVICE_OBJECT, irp: *mut IRP)>;
|
1243
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1244
|
-
pub type DRIVER_CONTROL = Option<unsafe extern "system" fn(deviceobject: *const DEVICE_OBJECT, irp: *mut IRP, mapregisterbase: *const core::ffi::c_void, context: *const core::ffi::c_void) -> super::System::SystemServices::IO_ALLOCATION_ACTION>;
|
1245
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1246
|
-
pub type DRIVER_DISPATCH = Option<unsafe extern "system" fn(deviceobject: *const DEVICE_OBJECT, irp: *mut IRP) -> super::super::Win32::Foundation::NTSTATUS>;
|
1247
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1248
|
-
pub type DRIVER_DISPATCH_PAGED = Option<unsafe extern "system" fn(deviceobject: *const DEVICE_OBJECT, irp: *mut IRP) -> super::super::Win32::Foundation::NTSTATUS>;
|
1249
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1250
|
-
pub type DRIVER_FS_NOTIFICATION = Option<unsafe extern "system" fn(deviceobject: *const DEVICE_OBJECT, fsactive: super::super::Win32::Foundation::BOOLEAN)>;
|
1251
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1252
|
-
pub type DRIVER_INITIALIZE = Option<unsafe extern "system" fn(driverobject: *const DRIVER_OBJECT, registrypath: *const super::super::Win32::Foundation::UNICODE_STRING) -> super::super::Win32::Foundation::NTSTATUS>;
|
1253
|
-
pub type DRIVER_NOTIFICATION_CALLBACK_ROUTINE = Option<unsafe extern "system" fn(notificationstructure: *const core::ffi::c_void, context: *mut core::ffi::c_void) -> super::super::Win32::Foundation::NTSTATUS>;
|
1254
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1255
|
-
pub type DRIVER_REINITIALIZE = Option<unsafe extern "system" fn(driverobject: *const DRIVER_OBJECT, context: *const core::ffi::c_void, count: u32)>;
|
1256
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1257
|
-
pub type DRIVER_STARTIO = Option<unsafe extern "system" fn(deviceobject: *mut DEVICE_OBJECT, irp: *mut IRP)>;
|
1258
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1259
|
-
pub type DRIVER_UNLOAD = Option<unsafe extern "system" fn(driverobject: *const DRIVER_OBJECT)>;
|
1260
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1261
|
-
pub type FAST_IO_ACQUIRE_FILE = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT)>;
|
1262
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1263
|
-
pub type FAST_IO_ACQUIRE_FOR_CCFLUSH = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::NTSTATUS>;
|
1264
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1265
|
-
pub type FAST_IO_ACQUIRE_FOR_MOD_WRITE = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, endingoffset: *const i64, resourcetorelease: *mut *mut ERESOURCE, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::NTSTATUS>;
|
1266
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1267
|
-
pub type FAST_IO_CHECK_IF_POSSIBLE = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, length: u32, wait: super::super::Win32::Foundation::BOOLEAN, lockkey: u32, checkforreadoperation: super::super::Win32::Foundation::BOOLEAN, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1268
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1269
|
-
pub type FAST_IO_DETACH_DEVICE = Option<unsafe extern "system" fn(sourcedevice: *const DEVICE_OBJECT, targetdevice: *const DEVICE_OBJECT)>;
|
1270
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1271
|
-
pub type FAST_IO_DEVICE_CONTROL = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, wait: super::super::Win32::Foundation::BOOLEAN, inputbuffer: *const core::ffi::c_void, inputbufferlength: u32, outputbuffer: *mut core::ffi::c_void, outputbufferlength: u32, iocontrolcode: u32, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1272
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1273
|
-
pub type FAST_IO_LOCK = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, length: *const i64, processid: PEPROCESS, key: u32, failimmediately: super::super::Win32::Foundation::BOOLEAN, exclusivelock: super::super::Win32::Foundation::BOOLEAN, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1274
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1275
|
-
pub type FAST_IO_MDL_READ = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, length: u32, lockkey: u32, mdlchain: *mut *mut MDL, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1276
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1277
|
-
pub type FAST_IO_MDL_READ_COMPLETE = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, mdlchain: *const MDL, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1278
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1279
|
-
pub type FAST_IO_MDL_READ_COMPLETE_COMPRESSED = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, mdlchain: *const MDL, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1280
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1281
|
-
pub type FAST_IO_MDL_WRITE_COMPLETE = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, mdlchain: *const MDL, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1282
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1283
|
-
pub type FAST_IO_MDL_WRITE_COMPLETE_COMPRESSED = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, mdlchain: *const MDL, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1284
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1285
|
-
pub type FAST_IO_PREPARE_MDL_WRITE = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, length: u32, lockkey: u32, mdlchain: *mut *mut MDL, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1286
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1287
|
-
pub type FAST_IO_QUERY_BASIC_INFO = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, wait: super::super::Win32::Foundation::BOOLEAN, buffer: *mut super::Storage::FileSystem::FILE_BASIC_INFORMATION, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1288
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1289
|
-
pub type FAST_IO_QUERY_NETWORK_OPEN_INFO = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, wait: super::super::Win32::Foundation::BOOLEAN, buffer: *mut super::Storage::FileSystem::FILE_NETWORK_OPEN_INFORMATION, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1290
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1291
|
-
pub type FAST_IO_QUERY_OPEN = Option<unsafe extern "system" fn(irp: *mut IRP, networkinformation: *mut super::Storage::FileSystem::FILE_NETWORK_OPEN_INFORMATION, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1292
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1293
|
-
pub type FAST_IO_QUERY_STANDARD_INFO = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, wait: super::super::Win32::Foundation::BOOLEAN, buffer: *mut super::Storage::FileSystem::FILE_STANDARD_INFORMATION, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1294
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1295
|
-
pub type FAST_IO_READ = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, length: u32, wait: super::super::Win32::Foundation::BOOLEAN, lockkey: u32, buffer: *mut core::ffi::c_void, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1296
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1297
|
-
pub type FAST_IO_READ_COMPRESSED = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, length: u32, lockkey: u32, buffer: *mut core::ffi::c_void, mdlchain: *mut *mut MDL, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, compresseddatainfo: *mut super::Storage::FileSystem::COMPRESSED_DATA_INFO, compresseddatainfolength: u32, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1298
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1299
|
-
pub type FAST_IO_RELEASE_FILE = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT)>;
|
1300
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1301
|
-
pub type FAST_IO_RELEASE_FOR_CCFLUSH = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::NTSTATUS>;
|
1302
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1303
|
-
pub type FAST_IO_RELEASE_FOR_MOD_WRITE = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, resourcetorelease: *const ERESOURCE, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::NTSTATUS>;
|
1304
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1305
|
-
pub type FAST_IO_UNLOCK_ALL = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, processid: PEPROCESS, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1306
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1307
|
-
pub type FAST_IO_UNLOCK_ALL_BY_KEY = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, processid: *const core::ffi::c_void, key: u32, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1308
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1309
|
-
pub type FAST_IO_UNLOCK_SINGLE = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, length: *const i64, processid: PEPROCESS, key: u32, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1310
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1311
|
-
pub type FAST_IO_WRITE = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, length: u32, wait: super::super::Win32::Foundation::BOOLEAN, lockkey: u32, buffer: *const core::ffi::c_void, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1312
|
-
#[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))]
|
1313
|
-
pub type FAST_IO_WRITE_COMPRESSED = Option<unsafe extern "system" fn(fileobject: *const FILE_OBJECT, fileoffset: *const i64, length: u32, lockkey: u32, buffer: *const core::ffi::c_void, mdlchain: *mut *mut MDL, iostatus: *mut super::super::Win32::System::IO::IO_STATUS_BLOCK, compresseddatainfo: *const super::Storage::FileSystem::COMPRESSED_DATA_INFO, compresseddatainfolength: u32, deviceobject: *const DEVICE_OBJECT) -> super::super::Win32::Foundation::BOOLEAN>;
|
1314
|
-
pub type PFREE_FUNCTION = Option<unsafe extern "system" fn()>;
|
1315
|
-
pub type PIO_COMPLETION_ROUTINE = Option<unsafe extern "system" fn() -> super::super::Win32::Foundation::NTSTATUS>;
|
1316
|
-
pub type PKDEFERRED_ROUTINE = Option<unsafe extern "system" fn()>;
|
1317
|
-
pub type PWORKER_THREAD_ROUTINE = Option<unsafe extern "system" fn()>;
|