summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/System/Profile/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/System/Profile/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/System/Profile/mod.rs62
1 files changed, 0 insertions, 62 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/System/Profile/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/System/Profile/mod.rs
deleted file mode 100644
index 94a46de54..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/System/Profile/mod.rs
+++ /dev/null
@@ -1,62 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[cfg(feature = "System_Profile_SystemManufacturers")]
-pub mod SystemManufacturers;
-#[link(name = "windows")]
-extern "system" {}
-pub type AnalyticsVersionInfo = *mut ::core::ffi::c_void;
-pub type HardwareToken = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct PlatformDataCollectionLevel(pub i32);
-impl PlatformDataCollectionLevel {
- pub const Security: Self = Self(0i32);
- pub const Basic: Self = Self(1i32);
- pub const Enhanced: Self = Self(2i32);
- pub const Full: Self = Self(3i32);
-}
-impl ::core::marker::Copy for PlatformDataCollectionLevel {}
-impl ::core::clone::Clone for PlatformDataCollectionLevel {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type SystemIdentificationInfo = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct SystemIdentificationSource(pub i32);
-impl SystemIdentificationSource {
- pub const None: Self = Self(0i32);
- pub const Tpm: Self = Self(1i32);
- pub const Uefi: Self = Self(2i32);
- pub const Registry: Self = Self(3i32);
-}
-impl ::core::marker::Copy for SystemIdentificationSource {}
-impl ::core::clone::Clone for SystemIdentificationSource {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct SystemOutOfBoxExperienceState(pub i32);
-impl SystemOutOfBoxExperienceState {
- pub const NotStarted: Self = Self(0i32);
- pub const InProgress: Self = Self(1i32);
- pub const Completed: Self = Self(2i32);
-}
-impl ::core::marker::Copy for SystemOutOfBoxExperienceState {}
-impl ::core::clone::Clone for SystemOutOfBoxExperienceState {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type UnsupportedAppRequirement = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct UnsupportedAppRequirementReasons(pub u32);
-impl UnsupportedAppRequirementReasons {
- pub const Unknown: Self = Self(0u32);
- pub const DeniedBySystem: Self = Self(1u32);
-}
-impl ::core::marker::Copy for UnsupportedAppRequirementReasons {}
-impl ::core::clone::Clone for UnsupportedAppRequirementReasons {
- fn clone(&self) -> Self {
- *self
- }
-}