summaryrefslogtreecommitdiffstats
path: root/vendor/windows-metadata/default
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
commit9835e2ae736235810b4ea1c162ca5e65c547e770 (patch)
tree3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/windows-metadata/default
parentReleasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff)
downloadrustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz
rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/windows-metadata/default')
-rw-r--r--vendor/windows-metadata/default/Windows.Wdk.winmdbin0 -> 999320 bytes
-rw-r--r--vendor/windows-metadata/default/Windows.Win32.winmdbin0 -> 16698288 bytes
-rw-r--r--vendor/windows-metadata/default/Windows.winmdbin0 -> 7244288 bytes
-rw-r--r--vendor/windows-metadata/default/readme.md22
4 files changed, 22 insertions, 0 deletions
diff --git a/vendor/windows-metadata/default/Windows.Wdk.winmd b/vendor/windows-metadata/default/Windows.Wdk.winmd
new file mode 100644
index 000000000..f8d692c17
--- /dev/null
+++ b/vendor/windows-metadata/default/Windows.Wdk.winmd
Binary files differ
diff --git a/vendor/windows-metadata/default/Windows.Win32.winmd b/vendor/windows-metadata/default/Windows.Win32.winmd
new file mode 100644
index 000000000..f78f565e6
--- /dev/null
+++ b/vendor/windows-metadata/default/Windows.Win32.winmd
Binary files differ
diff --git a/vendor/windows-metadata/default/Windows.winmd b/vendor/windows-metadata/default/Windows.winmd
new file mode 100644
index 000000000..374a584ec
--- /dev/null
+++ b/vendor/windows-metadata/default/Windows.winmd
Binary files differ
diff --git a/vendor/windows-metadata/default/readme.md b/vendor/windows-metadata/default/readme.md
new file mode 100644
index 000000000..535bfad43
--- /dev/null
+++ b/vendor/windows-metadata/default/readme.md
@@ -0,0 +1,22 @@
+These `.winmd` files provide the default metadata for the Windows API. This is used to
+generate the `windows` and `windows-sys` crates and are loaded using the `windows-metadata` crate's
+`File::with_default` function when reading metadata directly. As with everything else in this repo,
+the `.winmd` files in this folder are licensed via MIT or Apache-2.0.
+
+## Windows.Win32.winmd
+- Source: https://www.nuget.org/packages/Microsoft.Windows.SDK.Win32Metadata/
+- Version: 49.0.21
+
+## Windows.Wdk.winmd
+- Source: https://www.nuget.org/packages/Microsoft.Windows.WDK.Win32Metadata/
+- Version: 0.4.2
+
+## Windows.winmd
+- Source: https://www.nuget.org/packages/Microsoft.Windows.SDK.Contracts
+- Version: 10.0.22621.755
+
+The Windows.winmd was created by merging the .winmd files from the second nuget package as follows
+
+```
+mdmerge -o out -i . -n 1
+```