summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/ApplicationModel/Resources
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:21 +0000
commit4e8199b572f2035b7749cba276ece3a26630d23e (patch)
treef09feeed6a0fe39d027b1908aa63ea6b35e4b631 /vendor/windows-sys/src/Windows/ApplicationModel/Resources
parentAdding upstream version 1.66.0+dfsg1. (diff)
downloadrustc-4e8199b572f2035b7749cba276ece3a26630d23e.tar.xz
rustc-4e8199b572f2035b7749cba276ece3a26630d23e.zip
Adding upstream version 1.67.1+dfsg1.upstream/1.67.1+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/windows-sys/src/Windows/ApplicationModel/Resources')
-rw-r--r--vendor/windows-sys/src/Windows/ApplicationModel/Resources/Core/mod.rs56
-rw-r--r--vendor/windows-sys/src/Windows/ApplicationModel/Resources/Management/mod.rs17
-rw-r--r--vendor/windows-sys/src/Windows/ApplicationModel/Resources/mod.rs5
3 files changed, 0 insertions, 78 deletions
diff --git a/vendor/windows-sys/src/Windows/ApplicationModel/Resources/Core/mod.rs b/vendor/windows-sys/src/Windows/ApplicationModel/Resources/Core/mod.rs
deleted file mode 100644
index 35d3cd74b..000000000
--- a/vendor/windows-sys/src/Windows/ApplicationModel/Resources/Core/mod.rs
+++ /dev/null
@@ -1,56 +0,0 @@
-pub type NamedResource = *mut ::core::ffi::c_void;
-pub type ResourceCandidate = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"ApplicationModel_Resources_Core\"`*"]
-#[repr(transparent)]
-pub struct ResourceCandidateKind(pub i32);
-impl ResourceCandidateKind {
- pub const String: Self = Self(0i32);
- pub const File: Self = Self(1i32);
- pub const EmbeddedData: Self = Self(2i32);
-}
-impl ::core::marker::Copy for ResourceCandidateKind {}
-impl ::core::clone::Clone for ResourceCandidateKind {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type ResourceCandidateVectorView = *mut ::core::ffi::c_void;
-pub type ResourceContext = *mut ::core::ffi::c_void;
-pub type ResourceContextLanguagesVectorView = *mut ::core::ffi::c_void;
-#[repr(C)]
-#[doc = "*Required features: `\"ApplicationModel_Resources_Core\"`*"]
-pub struct ResourceLayoutInfo {
- pub MajorVersion: u32,
- pub MinorVersion: u32,
- pub ResourceSubtreeCount: u32,
- pub NamedResourceCount: u32,
- pub Checksum: i32,
-}
-impl ::core::marker::Copy for ResourceLayoutInfo {}
-impl ::core::clone::Clone for ResourceLayoutInfo {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type ResourceManager = *mut ::core::ffi::c_void;
-pub type ResourceMap = *mut ::core::ffi::c_void;
-pub type ResourceMapIterator = *mut ::core::ffi::c_void;
-pub type ResourceMapMapView = *mut ::core::ffi::c_void;
-pub type ResourceMapMapViewIterator = *mut ::core::ffi::c_void;
-pub type ResourceQualifier = *mut ::core::ffi::c_void;
-pub type ResourceQualifierMapView = *mut ::core::ffi::c_void;
-pub type ResourceQualifierObservableMap = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"ApplicationModel_Resources_Core\"`*"]
-#[repr(transparent)]
-pub struct ResourceQualifierPersistence(pub i32);
-impl ResourceQualifierPersistence {
- pub const None: Self = Self(0i32);
- pub const LocalMachine: Self = Self(1i32);
-}
-impl ::core::marker::Copy for ResourceQualifierPersistence {}
-impl ::core::clone::Clone for ResourceQualifierPersistence {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type ResourceQualifierVectorView = *mut ::core::ffi::c_void;
diff --git a/vendor/windows-sys/src/Windows/ApplicationModel/Resources/Management/mod.rs b/vendor/windows-sys/src/Windows/ApplicationModel/Resources/Management/mod.rs
deleted file mode 100644
index 7f4e312ed..000000000
--- a/vendor/windows-sys/src/Windows/ApplicationModel/Resources/Management/mod.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-pub type IndexedResourceCandidate = *mut ::core::ffi::c_void;
-pub type IndexedResourceQualifier = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"ApplicationModel_Resources_Management\"`*"]
-#[repr(transparent)]
-pub struct IndexedResourceType(pub i32);
-impl IndexedResourceType {
- pub const String: Self = Self(0i32);
- pub const Path: Self = Self(1i32);
- pub const EmbeddedData: Self = Self(2i32);
-}
-impl ::core::marker::Copy for IndexedResourceType {}
-impl ::core::clone::Clone for IndexedResourceType {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type ResourceIndexer = *mut ::core::ffi::c_void;
diff --git a/vendor/windows-sys/src/Windows/ApplicationModel/Resources/mod.rs b/vendor/windows-sys/src/Windows/ApplicationModel/Resources/mod.rs
deleted file mode 100644
index 649a7f9b1..000000000
--- a/vendor/windows-sys/src/Windows/ApplicationModel/Resources/mod.rs
+++ /dev/null
@@ -1,5 +0,0 @@
-#[cfg(feature = "ApplicationModel_Resources_Core")]
-pub mod Core;
-#[cfg(feature = "ApplicationModel_Resources_Management")]
-pub mod Management;
-pub type ResourceLoader = *mut ::core::ffi::c_void;