diff options
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/Resources')
3 files changed, 0 insertions, 83 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/Resources/Core/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/Resources/Core/mod.rs deleted file mode 100644 index 5e4d29d61..000000000 --- a/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/Resources/Core/mod.rs +++ /dev/null @@ -1,56 +0,0 @@ -#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)] -#[link(name = "windows")] -extern "system" {} -pub type NamedResource = *mut ::core::ffi::c_void; -pub type ResourceCandidate = *mut ::core::ffi::c_void; -#[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)] -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; -#[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-0.28.0/src/Windows/ApplicationModel/Resources/Management/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/Resources/Management/mod.rs deleted file mode 100644 index e0e3721b9..000000000 --- a/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/Resources/Management/mod.rs +++ /dev/null @@ -1,19 +0,0 @@ -#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)] -#[link(name = "windows")] -extern "system" {} -pub type IndexedResourceCandidate = *mut ::core::ffi::c_void; -pub type IndexedResourceQualifier = *mut ::core::ffi::c_void; -#[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-0.28.0/src/Windows/ApplicationModel/Resources/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/Resources/mod.rs deleted file mode 100644 index a87a505c4..000000000 --- a/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/Resources/mod.rs +++ /dev/null @@ -1,8 +0,0 @@ -#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)] -#[cfg(feature = "ApplicationModel_Resources_Core")] -pub mod Core; -#[cfg(feature = "ApplicationModel_Resources_Management")] -pub mod Management; -#[link(name = "windows")] -extern "system" {} -pub type ResourceLoader = *mut ::core::ffi::c_void; |